37ea5d4a49
GitHub's runners are still too weak for us to go by without
doing this: https://pipelines.actions.githubusercontent.com/eRaLlgv7QgiQrEiMWvOVzCfcXl8ehv3iNil9w7DRw7wdT9P1kT/_apis/pipelines/1/runs/2741/signedlogcontent/3?urlExpires=2020-09-21T07%3A46%3A57.1297541Z&urlSigningMethod=HMACV1&urlSignature=6e1r7tlUIn9E2EuEm2i4skqgQwZ4jCmO9ARlGZ6a3SU%3D
This reverts commit 098c765132
.
83 lines
2.5 KiB
YAML
83 lines
2.5 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
|
|
name: Deploy snapshot builds
|
|
jobs:
|
|
deploy-release-snapshot:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Decrypt secrets
|
|
run: release/signing-setup.sh "$ENCRYPT_KEY"
|
|
env:
|
|
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }}
|
|
|
|
- name: Copy CI gradle.properties
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
- name: Generate cache key
|
|
run: ./.github/checksum.sh checksum.txt
|
|
|
|
- name: Cache gradle modules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.gradle/caches/modules-2
|
|
key: ${{ runner.os }}-gradlemodules-${{ hashFiles('checksum.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gradlemodules-
|
|
|
|
- name: Cache gradle jars
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.gradle/caches/jars-3
|
|
key: ${{ runner.os }}-gradlejars-${{ hashFiles('checksum.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gradlejars-
|
|
|
|
- name: Cache gradle build
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.gradle/caches/build-cache-1
|
|
key: ${{ runner.os }}-gradlebuildcache-${{ hashFiles('checksum.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gradlebuildcache-
|
|
|
|
- name: Download gradle dependencies
|
|
run: ./gradlew dependencies
|
|
|
|
- name: Build release app
|
|
run: ./gradlew :app:assembleFreeRelease :app:assembleNonFreeRelease
|
|
env:
|
|
SNAPSHOT: "true"
|
|
|
|
- name: Clean secrets
|
|
run: release/signing-cleanup.sh
|
|
|
|
- name: Deploy snapshot
|
|
run: release/deploy-snapshot.sh
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
SSH_USERNAME: ${{ secrets.SSH_USERNAME }}
|
|
SERVER_ADDRESS: ${{ secrets.SERVER_ADDRESS }}
|
|
SERVER_DESTINATION: ${{ secrets.SERVER_DESTINATION }}
|
|
SSH_PORT: ${{ secrets.SSH_PORT }}
|
|
|
|
- name: Install NodeJS
|
|
uses: actions/setup-node@v2-beta
|
|
with:
|
|
node-version: '12'
|
|
|
|
- name: Install cfcli
|
|
run: npm install -g cloudflare-cli
|
|
|
|
- name: Purge Cloudflare cache
|
|
run: |
|
|
cfcli --token ${CF_TOKEN} purge "https://dl.msfjarvis.dev/APS/$(cd ./app/build/outputs/apk/nonFree/release/; ls *.apk)"
|
|
cfcli --token ${CF_TOKEN} purge "https://dl.msfjarvis.dev/APS/$(cd ./app/build/outputs/apk/free/release/; ls *.apk)"
|
|
env:
|
|
CF_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|