fix(ci): invalidation id without quotes
This commit is contained in:
parent
f382078ee6
commit
f054f4c516
6
.github/workflows/publish-dist.yml
vendored
6
.github/workflows/publish-dist.yml
vendored
@ -239,8 +239,10 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_REGION: 'eu-west-1'
|
AWS_REGION: 'eu-west-1'
|
||||||
run: |
|
run: |
|
||||||
id=$(aws cloudfront list-distributions | jq -Mc '.DistributionList.Items | .[] | select(.DefaultCacheBehavior.TargetOriginId == "${{ env.BUCKET_NAME }}") | .Id')
|
echo "Looking for distribution for bucket: ${{ env.BUCKET_NAME }}"
|
||||||
aws cloudfront create-invalidation --distribution-id "${id}" --paths "/*"
|
id=$(aws cloudfront list-distributions | jq -Mrc '.DistributionList.Items | .[] | select(.DefaultCacheBehavior.TargetOriginId == "${{ env.BUCKET_NAME }}") | .Id')
|
||||||
|
echo "Found id is: ${id}"
|
||||||
|
aws cloudfront create-invalidation --distribution-id $id --paths "/*"
|
||||||
|
|
||||||
- name: Add preview label
|
- name: Add preview label
|
||||||
uses: actions-ecosystem/action-add-labels@v1
|
uses: actions-ecosystem/action-add-labels@v1
|
||||||
|
Loading…
Reference in New Issue
Block a user