diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 6 | ||||
-rw-r--r-- | .github/workflows/release.yml | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index c31bbb78..272a0738 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v2 - name: Decrypt secrets - run: release/signing-setup.sh "$ENCRYPT_KEY" + run: scripts/signing-setup.sh "$ENCRYPT_KEY" env: ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }} @@ -28,10 +28,10 @@ jobs: arguments: :app:assembleFreeRelease :app:assembleNonFreeRelease - name: Clean secrets - run: release/signing-cleanup.sh + run: scripts/signing-cleanup.sh - name: Deploy snapshot - run: release/deploy-snapshot.sh + run: scripts/deploy-snapshot.sh env: ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} SSH_USERNAME: ${{ secrets.SSH_USERNAME }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 521f7af1..8a8a3244 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v2 - name: Decrypt secrets - run: release/signing-setup.sh "$ENCRYPT_KEY" + run: scripts/signing-setup.sh "$ENCRYPT_KEY" env: ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }} @@ -45,7 +45,7 @@ jobs: - name: Clean secrets if: always() - run: release/signing-cleanup.sh + run: scripts/signing-cleanup.sh create_github_release: name: Create GitHub Release |