Skip to content

Commit

Permalink
ci: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
1xfsanchez committed Jun 21, 2024
1 parent 63cdf80 commit 2eccec1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jobs:
env:
FASTLY_ID: ${{ secrets.fastly_id }}
FASTLY_TOKEN: ${{ secrets.fastly_token }}
run: curl -XPOST "https://api.fastly.com/service/$FASTLY_ID/purge_all" \
-H "Fastly-Key: $FASTLY_TOKEN" \
-H "Accept: application/json"
run: |
curl -XPOST "https://api.fastly.com/service/$FASTLY_ID/purge_all" \
-H "Fastly-Key: $FASTLY_TOKEN" \
-H "Accept: application/json"

0 comments on commit 2eccec1

Please sign in to comment.