From e61551bf3756a49f9eb4ee03bd726f3c6167dad7 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 16 Dec 2019 03:19:18 +0530 Subject: Setup snapshot deployment (#599) * Setup snapshot deployment * README: Update repository links * README: Update workflow badge link * README: Add link to Snapshot builds * Fix snapshot/pull-request build conflict * Deploy from feature/deploy-snapshots as well * Revert "Deploy from feature/deploy-snapshots as well" Confirmed it works well This reverts commit 06f6bc0e8c19f238643655d09ca20f83dd416283. Signed-off-by: Harsh Shandilya --- .github/workflows/deploy_snapshot.yml | 41 +++++++++++++++++++++++++++++++++++ .github/workflows/pull_request.yml | 13 +++++++++++ .github/workflows/push.yml | 12 ---------- 3 files changed, 54 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/deploy_snapshot.yml create mode 100644 .github/workflows/pull_request.yml delete mode 100644 .github/workflows/push.yml (limited to '.github') 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/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 00000000..e158846c --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,13 @@ +on: pull_request + +name: Check pull request +jobs: + test-pr: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - run: ./gradlew spotlessCheck build test lintDebug -Dpre-dex=false + - uses: actions/upload-artifact@master + with: + name: Debug APK + path: app/build/outputs/apk/debug/app-debug.apk diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml deleted file mode 100644 index 8edffd42..00000000 --- a/.github/workflows/push.yml +++ /dev/null @@ -1,12 +0,0 @@ -on: [push, pull_request] -name: CI builds -jobs: - setup-android: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - run: ./gradlew spotlessCheck build test lintDebug -Dpre-dex=false - - uses: actions/upload-artifact@master - with: - name: Debug APK - path: app/build/outputs/apk/debug/app-debug.apk -- cgit v1.2.3