mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-05 15:45:42 +02:00
* 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 06f6bc0e8c
.
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 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: 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 }}
|