Skip to content

Commit bd8f3d7

Browse files
authored
Merge pull request #1565 from fermyon/fix/escape-gh-secret
fix(docs): escape GH secret in yaml
2 parents 40a08c5 + 555d902 commit bd8f3d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/wasm-functions/github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
run: spin build
101101

102102
- name: Login to Fermyon Wasm Functions
103-
run: spin aka login --token ${{ secrets.SPIN_AKA_ACCESS_TOKEN }}
103+
run: spin aka login --token $\{{ secrets.SPIN_AKA_ACCESS_TOKEN }}
104104

105105
- name: Deploy to Fermyon Wasm Functions
106106
run: spin aka deploy
@@ -184,7 +184,7 @@ app is deployed to Fermyon Wasm Functions:
184184

185185
```yaml
186186
- name: Deploy to Fermyon Wasm Functions
187-
run: spin aka deploy --variable compression_level=${{ secrets.COMPRESSION_LEVEL }}
187+
run: spin aka deploy --variable compression_level=$\{{ secrets.COMPRESSION_LEVEL }}
188188
```
189189

190190
## Next Steps

0 commit comments

Comments
 (0)