Skip to content

Commit

Permalink
updating the variable and env names
Browse files Browse the repository at this point in the history
  • Loading branch information
MarmadileManteater authored Jul 9, 2022
1 parent 580d99a commit aa71ec1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/buildCordova.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
os: ubuntu-18.04

runs-on: ${{ matrix.os }}
environment: production
environment: development

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -83,13 +83,13 @@ jobs:
run: |
while read -r line;
do
echo "${line}" >> nightly.keystore.asc
done <<< '${{ secrets.NIGHTLY_KEYSTORE }}'
gpg -d --passphrase '${{ secrets.NIGHTLY_KEYSTORE_PASSWORD }}' --batch nightly.keystore.asc >> nightly.keystore
echo "${line}" >> freetube.keystore.asc
done <<< '${{ secrets.KEYSTORE }}'
gpg -d --passphrase '${{ secrets.KEYSTORE_PASSWORD }}' --batch freetube.keystore.asc >> freetube.keystore
- name: Build APK with Cordova with Node.js ${{ matrix.node-version}}
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
run: npm run build:cordova freetube-${{ steps.versionNumber.outputs.result }}.apk cordova ./nightly.keystore ${{ secrets.NIGHTLY_KEYSTORE_PASSWORD }}
run: npm run build:cordova freetube-${{ steps.versionNumber.outputs.result }}.apk cordova ./freetube.keystore ${{ secrets.KEYSTORE_PASSWORD }}

- name: Upload Cordova APK Artifact
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit aa71ec1

Please sign in to comment.