diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 41 | ||||
-rw-r--r-- | .github/workflows/pull_request.yml (renamed from .github/workflows/push.yml) | 7 |
2 files changed, 45 insertions, 3 deletions
diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml new file mode 100644 index 00000000..110546b1 --- /dev/null +++ b/.github/workflows/deploy_snapshot.yml @@ -0,0 +1,41 @@ +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: Download gradle dependencies + run: ./gradlew dependencies + + - name: Validate codestyle with Spotless + run: ./gradlew spotlessCheck + + - 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 }} diff --git a/.github/workflows/push.yml b/.github/workflows/pull_request.yml index 8edffd42..e158846c 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/pull_request.yml @@ -1,7 +1,8 @@ -on: [push, pull_request] -name: CI builds +on: pull_request + +name: Check pull request jobs: - setup-android: + test-pr: runs-on: ubuntu-latest steps: - uses: actions/checkout@master |