Skip to content

Commit

Permalink
Updated: ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pakka-papad committed Oct 2, 2024
1 parent e7a98e1 commit 0c5e95a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
run: mkdir keys &&
echo $STORE_FILE | base64 -di > keys/store_key.jks &&
echo $IR_STORE_FILE | base64 -di > keys/ir_store_key.jks &&
echo 'STORE_FILE=keys/store_key.jks' > ./local.properties &&
echo 'STORE_FILE=${{ github.workspace }}/keys/store_key.jks' > ./local.properties &&
echo 'STORE_PASSWORD=${{ secrets.STORE_PASSWORD }}' > ./local.properties &&
echo 'KEY_ALIAS=${{ secrets.KEY_ALIAS }}' > ./local.properties &&
echo 'KEY_PASSWORD=${{ secrets.KEY_PASSWORD }}' > ./local.properties &&
echo 'IR_STORE_FILE=keys/ir_store_key.jks' > ./local.properties &&
echo 'IR_STORE_FILE=${{ github.workspace }}/keys/ir_store_key.jks' > ./local.properties &&
echo 'IR_STORE_PASSWORD=${{ secrets.IR_STORE_PASSWORD }}' > ./local.properties &&
echo 'IR_KEY_ALIAS=${{ secrets.IR_KEY_ALIAS }}' > ./local.properties &&
echo 'IR_KEY_PASSWORD=${{ secrets.IR_KEY_PASSWORD }}' > ./local.properties
Expand Down

0 comments on commit 0c5e95a

Please sign in to comment.