Skip to content

Commit 2c9e2fb

Browse files
committed
Deploy fix
1 parent 2f303ca commit 2c9e2fb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- name: Create tokens.yaml from secret
1919
run: |
20-
echo "${{ secrets.TOKENS_YAML_B64 }}" | base64 --decode > tokens.yaml
20+
echo "${{ secrets.TOKENS_YAML }}" | base64 --decode > tokens.yaml
2121
chmod 600 tokens.yaml
2222
2323
- name: Make gradlew executable
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Create tokens.yaml from secret
5454
run: |
55-
echo "${{ secrets.TOKENS_YAML_B64 }}" | base64 --decode > tokens.yaml
55+
echo "${{ secrets.TOKENS_YAML }}" | base64 --decode > tokens.yaml
5656
chmod 600 tokens.yaml
5757
5858
- name: Make gradlew executable
@@ -88,7 +88,7 @@ jobs:
8888
- name: Create tokens.yaml from secret (Windows)
8989
shell: pwsh
9090
run: |
91-
$b64 = "${{ secrets.TOKENS_YAML_B64 }}"
91+
$b64 = "${{ secrets.TOKENS_YAML }}"
9292
[System.IO.File]::WriteAllBytes("tokens.yaml", [System.Convert]::FromBase64String($b64))
9393
9494
- name: Build .msi

0 commit comments

Comments
 (0)