🚀 Publish #336
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: 🚀 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@v4 | |
- uses: actions/cache@v4 | |
name: Gradle Cache | |
with: | |
path: ~/.gradle/caches | |
key: gradle-${{ hashFiles('**/*.gradle*') }}-v1 | |
- name: Configure JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "21" | |
- name: Install Release Utilities | |
run: | | |
mkdir ~/bin/ | |
curl -L -o ~/bin/github-release.bz2 https://github.com/github-release/github-release/releases/download/v0.10.0/linux-amd64-github-release.bz2 | |
cd ~/bin | |
bunzip2 github-release.bz2 | |
chmod 755 ~/bin/github-release | |
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 'github@mikehardy.net' | |
git remote set-url origin git@github.com:$GITHUB_REPOSITORY | |
shell: bash | |
- uses: webfactory/ssh-agent@v0.9.0 | |
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 git@github.com:ankidroid/ankidroiddocs | |
popd | |
./tools/release.sh public | |
shell: bash | |
- name: Build and Release test release | |
if: "${{ github.event.inputs.public == '' }}" | |
run: ./tools/release.sh |