File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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
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
You can’t perform that action at this time.
0 commit comments