041cf00510
- Updated gitignore and checked in the IDE's codestyle config - Removed spotless as the underlying ktlint backend has failed to resolve the super frustrating import order bug[1] in nearly a year - Reformat the entire codebase based on the previously committed code style configuration. 1: https://github.com/pinterest/ktlint/issues/527
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
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@v1
|
|
|
|
- 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
|
|
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.gradle/caches
|
|
key: gradle-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/dependencies.gradle') }}
|
|
|
|
- name: Download gradle dependencies
|
|
run: ./gradlew dependencies
|
|
|
|
- name: Build release app
|
|
run: ./gradlew :app:assembleRelease
|
|
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 }}
|