Skip to content

Commit c1878ea

Browse files
author
Antoine Veuiller
committed
ci: fix deploy script
1 parent 3603ac6 commit c1878ea

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ jobs:
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v3
15-
- name: Prepare Environment
15+
- name: Prepare GPG Key
1616
env:
17-
UPLOAD_SETTINGS: ${{ secrets.UPLOAD_SETTINGS }}
1817
SECRING_GPG: ${{ secrets.SECRING_GPG }}
19-
run: |
20-
echo $UPLOAD_SETTINGS >> local.properties
21-
echo -n $SECRING_GPG | base64 -d >> secring.gpg
18+
run: echo -n "$SECRING_GPG" | base64 -d >> secring.gpg
19+
- name: Prepare Upload Configuration
20+
env:
21+
UPLOAD_SETTINGS: ${{ secrets.UPLOAD_SETTINGS }}
22+
run: echo $UPLOAD_SETTINGS >> local.properties
2223
- name: Setup java
2324
uses: actions/setup-java@v3
2425
with:

0 commit comments

Comments
 (0)