feat: added a search function #96
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- master | |
pull_request: | |
jobs: | |
ktlint: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
permissions: | |
contents: read | |
steps: | |
- name: perform the checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: gradle setup | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
- name: ktlint check | |
run: ./gradlew ktlintCheck | |
compile-and-lint: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: gradle setup | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
# needed for configuration task cache | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
- name: compile | |
run: ./gradlew compileFdroidDebugKotlin | |
- name: lint | |
run: ./gradlew lintFdroidDebug | |
compile-android-test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: gradle setup | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
- name: compile android test | |
run: ./gradlew compileFdroidDebugAndroidTestKotlin | |
test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: gradle setup | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
- name: test | |
run: ./gradlew testFdroidDebug | |
fdroid-apk: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: prepare for build | |
# Do not run for forks | |
if: github.repository == 'spacecowboy/feeder' | |
shell: bash | |
run: ./prepare_for_build.sh | |
env: | |
SERVICEACCOUNTJSON: ${{ secrets.SERVICEACCOUNTJSON }} | |
KEYSTOREPASSWORD: ${{ secrets.KEYSTOREPASSWORD }} | |
KEYSTORE: ${{ secrets.KEYSTORE }} | |
KEYPASSWORD: ${{ secrets.KEYPASSWORD }} | |
KEYALIAS: ${{ secrets.KEYALIAS }} | |
- name: setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: gradle setup | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
- name: release apk | |
run: ./gradlew assembleFdroidRelease | |
- name: save fdroid apk | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fdroid-apk | |
retention-days: 1 | |
path: app/build/outputs/apk/fdroid/release/app-fdroid-release.apk | |
play-apk: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: prepare for build | |
# Do not run for forks | |
if: github.repository == 'spacecowboy/feeder' | |
shell: bash | |
run: ./prepare_for_build.sh | |
env: | |
SERVICEACCOUNTJSON: ${{ secrets.SERVICEACCOUNTJSON }} | |
KEYSTOREPASSWORD: ${{ secrets.KEYSTOREPASSWORD }} | |
KEYSTORE: ${{ secrets.KEYSTORE }} | |
KEYPASSWORD: ${{ secrets.KEYPASSWORD }} | |
KEYALIAS: ${{ secrets.KEYALIAS }} | |
- name: setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: gradle setup | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
- name: play apk | |
run: ./gradlew assemblePlayRelease | |
- name: save play apk | |
uses: actions/upload-artifact@v4 | |
with: | |
name: play-apk | |
retention-days: 1 | |
path: app/build/outputs/apk/play/release/app-play-release.apk | |
play-bundle: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: gradle setup | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
- name: prepare for build | |
# Do not run for forks | |
if: github.repository == 'spacecowboy/feeder' | |
shell: bash | |
run: ./prepare_for_build.sh | |
env: | |
SERVICEACCOUNTJSON: ${{ secrets.SERVICEACCOUNTJSON }} | |
KEYSTOREPASSWORD: ${{ secrets.KEYSTOREPASSWORD }} | |
KEYSTORE: ${{ secrets.KEYSTORE }} | |
KEYPASSWORD: ${{ secrets.KEYPASSWORD }} | |
KEYALIAS: ${{ secrets.KEYALIAS }} | |
- name: play bundle | |
run: ./gradlew bundlePlayRelease | |
- name: save bundle | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bundle | |
retention-days: 1 | |
path: | | |
app/build/outputs/bundle/playRelease/app-play-release.aab | |
app/build/outputs/mapping/playRelease/mapping.txt | |
## Commented out because it is not possible to NOT conflict with the real deploy job | |
# validate-deploy: | |
# if: github.event_name == 'pull_request' && github.repository == 'spacecowboy/feeder' | |
# concurrency: | |
# # Ensure this never runs at the same time as the deploy job | |
# group: deploy-play | |
# cancel-in-progress: false | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 10 | |
# needs: [play-bundle] | |
# permissions: | |
# contents: read | |
# steps: | |
# - name: checkout | |
# uses: actions/checkout@v4 | |
# with: | |
# submodules: 'recursive' | |
# fetch-depth: 0 | |
# fetch-tags: true | |
# - name: prepare for build | |
# # Do not run for forks | |
# if: github.repository == 'spacecowboy/feeder' | |
# shell: bash | |
# run: ./prepare_for_build.sh | |
# env: | |
# SERVICEACCOUNTJSON: ${{ secrets.SERVICEACCOUNTJSON }} | |
# KEYSTOREPASSWORD: ${{ secrets.KEYSTOREPASSWORD }} | |
# KEYSTORE: ${{ secrets.KEYSTORE }} | |
# KEYPASSWORD: ${{ secrets.KEYPASSWORD }} | |
# KEYALIAS: ${{ secrets.KEYALIAS }} | |
# - name: copy bundle | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: bundle | |
# path: app/build/outputs/ | |
# - name: validate deploy | |
# # Do not run for forks | |
# if: github.repository == 'spacecowboy/feeder' | |
# run: ./deploy_playstore_fast.sh --dry-run | |
deploy: | |
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) | |
# See Environment settings for Deployment protection rules | |
environment: | |
name: play | |
url: https://play.google.com/console/u/0/developers/5406252659647192004/app/4975713765305405500/releases/overview | |
concurrency: | |
# This name has nothing to do with the environment name | |
group: deploy-play | |
# Cancel any waiting jobs if a new one is queued (there is a wait timer configured in protection rules) | |
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
needs: [play-bundle] | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: prepare for build | |
shell: bash | |
run: ./prepare_for_build.sh | |
env: | |
SERVICEACCOUNTJSON: ${{ secrets.SERVICEACCOUNTJSON }} | |
KEYSTOREPASSWORD: ${{ secrets.KEYSTOREPASSWORD }} | |
KEYSTORE: ${{ secrets.KEYSTORE }} | |
KEYPASSWORD: ${{ secrets.KEYPASSWORD }} | |
KEYALIAS: ${{ secrets.KEYALIAS }} | |
- name: copy bundle | |
uses: actions/download-artifact@v4 | |
with: | |
name: bundle | |
path: app/build/outputs/ | |
- name: deploy beta | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
# do not want this to run on master commit which is also a tag | |
run: ci/run-if-not-release ./deploy_playstore_fast.sh | |
- name: deploy production | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
run: ./deploy_playstore_fast.sh | |
github-release: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
needs: [fdroid-apk, play-apk] | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
contents: write | |
steps: | |
- name: perform the checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: get latest changelog entry | |
run: mkdir -p build && ci/latest-changelog.py CHANGELOG.md > build/release_notes.md | |
- name: copy fdroid apk | |
uses: actions/download-artifact@v4 | |
with: | |
name: fdroid-apk | |
- name: copy play apk | |
uses: actions/download-artifact@v4 | |
with: | |
name: play-apk | |
- name: release | |
uses: softprops/action-gh-release@v2 | |
with: | |
draft: false | |
body_path: build/release_notes.md | |
fail_on_unmatched_files: true | |
files: | | |
app-fdroid-release.apk | |
app-play-release.apk |