🚀 Publish #381
This file contains hidden or 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: 🚀 Publish | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| public: | |
| description: "any non-empty value triggers a public build - version not auto-incremented / changelog required" | |
| required: false | |
| type: string | |
| # We want concurrency control to allow multiple runs, but serially | |
| # Otherwise if you run two publishes that upload to google at same time | |
| # (for instance on a release branch for beta, and main for alpha), google | |
| # will error as it can only handle one edit in publish account at once | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: false | |
| jobs: | |
| release_app: | |
| name: 'Release App' | |
| timeout-minutes: 120 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/cache@v4 | |
| name: Gradle Cache | |
| with: | |
| path: ~/.gradle/caches | |
| key: gradle-${{ hashFiles('**/*.gradle*') }}-v1 | |
| - name: Configure JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: "temurin" | |
| java-version: "21" | |
| - name: Install Release Utilities | |
| run: | | |
| sudo chown -R $USER /var/lib/gems/ | |
| sudo chown -R $USER /usr/local/bin | |
| gem install asciidoctor | |
| shell: bash | |
| - name: GIT Setup | |
| run: | | |
| git config --global user.name 'Mike Hardy' | |
| git config --global user.email '[email protected]' | |
| git remote set-url origin [email protected]:$GITHUB_REPOSITORY | |
| shell: bash | |
| - uses: webfactory/[email protected] | |
| with: | |
| ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| - name: Credential Prep | |
| run: | | |
| echo "KEYSTOREPATH=$HOME/src/android-keystore" >> $GITHUB_ENV | |
| echo "KEYALIAS=nrkeystorealias" >> $GITHUB_ENV | |
| echo "KEYSTOREPWD=${{ secrets.KEYSTORE_PASSWORD }}" >> $GITHUB_ENV | |
| echo "KEYPWD=${{ secrets.KEYSTORE_KEY_PASSWORD }}" >> $GITHUB_ENV | |
| mkdir ~/src | |
| cd ~/src | |
| echo "${{ secrets.AMAZON_PUBLISH_CREDENTIALS }}" | base64 -d > ./AnkiDroid-Amazon-Publish-Security-Profile.json.gz | |
| echo "${{ secrets.GOOGLE_PUBLISH_CREDENTIALS }}" | base64 -d > ./AnkiDroid-GCP-Publish-Credentials.json.gz | |
| echo "${{ secrets.RELEASES_PUBLISH_TOKEN }}" | base64 -d > ./my-github-personal-access-token.gz | |
| echo "${{ secrets.KEYSTORE }}" | base64 -d > ./android-keystore.gz | |
| gunzip *.gz | |
| shell: bash | |
| - name: Build and Release public release | |
| if: "${{ github.event.inputs.public != '' }}" | |
| run: | | |
| pushd ../ | |
| git clone [email protected]:ankidroid/ankidroiddocs | |
| popd | |
| ./tools/release.sh public | |
| shell: bash | |
| - name: Build and Release test release | |
| if: "${{ github.event.inputs.public == '' }}" | |
| run: ./tools/release.sh |