Skip to content

Commit

Permalink
ci(Actions): Fix path for keystore upload artifact
Browse files Browse the repository at this point in the history
Signed-off-by: arafaysaleem <a.rafaysaleem@gmail.com>
  • Loading branch information
arafaysaleem committed Jun 8, 2021
1 parent 5682197 commit ae1e026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PR-merge-build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/upload-artifact@v2.2.3
with:
name: signing-key-artifact
path: './android/$KEYSTORE_FILENAME'
path: ./android/${{ env.KEYSTORE_FILENAME }}
if-no-files-found: error
retention-days: 1
- name: Upload Key Properties Artifact
Expand All @@ -74,7 +74,7 @@ jobs:
uses: actions/download-artifact@v2.0.9
with:
name: signing-key-artifact #Must be same as upload artifact in previous job
path: './android/${{ secrets.KEYSTORE_FILENAME }}'
path: ./android/${{ secrets.KEYSTORE_FILENAME }}
- name: Download Key Properties Artifact
uses: actions/download-artifact@v2.0.9
with:
Expand Down

0 comments on commit ae1e026

Please sign in to comment.