From 80c8097a713721818af8edf00abbe36f5510973f Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 8 Jun 2020 12:55:02 -0400 Subject: [PATCH] fix paths to ps scripts --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d0eb5426e..a4b814c38 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,14 +30,14 @@ jobs: - name: Decrypt secrets if: github.ref == 'refs/heads/master' - run: ./github/scripts/android/decrypt-secrets.ps1 + run: ./.github/scripts/android/decrypt-secrets.ps1 shell: pwsh env: DECRYPT_FILE_PASSWORD: ${{ secrets.DECRYPT_FILE_PASSWORD }} - name: Increment version if: github.ref == 'refs/heads/master' - run: ./github/scripts/android/increment-version.ps1 + run: ./.github/scripts/android/increment-version.ps1 shell: pwsh - name: Restore packages @@ -45,7 +45,7 @@ jobs: - name: Build for Play Store if: github.ref == 'refs/heads/master' - run: ./github/scripts/android/build-play.ps1 + run: ./.github/scripts/android/build-play.ps1 shell: pwsh env: PLAY_KEYSTORE_PASSWORD: ${{ secrets.PLAY_KEYSTORE_PASSWORD }} @@ -67,7 +67,7 @@ jobs: - name: Build for F-Droid Store if: github.ref == 'refs/heads/master' - run: ./github/scripts/android/build-fdroid.ps1 + run: ./.github/scripts/android/build-fdroid.ps1 shell: pwsh env: FDROID_KEYSTORE_PASSWORD: ${{ secrets.FDROID_KEYSTORE_PASSWORD }}