Skip to content

Publish

Publish #293

Workflow file for this run

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
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 '[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 "KSTOREPWD=${{ secrets.KEYSTORE_PASSWORD }}" >> $GITHUB_ENV
echo "KEYPWD=${{ secrets.KEYSTORE_KEY_PASSWORD }}" >> $GITHUB_ENV
mkdir ~/src
echo "${{ secrets.AMAZON_PUBLISH_CREDENTIALS }}" | base64 -d > ~/src/AnkiDroid-Amazon-Publish-Security-Profile.json.gz
echo "${{ secrets.GOOGLE_PUBLISH_CREDENTIALS }}" | base64 -d > ~/src/AnkiDroid-GCP-Publish-Credentials.json.gz
echo "${{ secrets.RELEASES_PUBLISH_TOKEN }}" | base64 -d > ~/src/my-github-personal-access-token.gz
echo "${{ secrets.KEYSTORE }}" | base64 -d > ~/src/android-keystore.gz
cd ~/src
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