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 3b9bea7 commit e7a98e1
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,16 @@ jobs:
env:
STORE_FILE: ${{ secrets.STORE_FILE }}
IR_STORE_FILE: ${{ secrets.IR_STORE_FILE }}
run: 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_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_PASSWORD=${{ secrets.IR_STORE_PASSWORD }}' > ./local.properties && \
echo 'IR_KEY_ALIAS=${{ secrets.IR_KEY_ALIAS }}' > ./local.properties && \
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_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_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

- name: Grant execute permission for gradlew
Expand Down

0 comments on commit e7a98e1

Please sign in to comment.