Skip to content

Commit

Permalink
Fixing invalidation path
Browse files Browse the repository at this point in the history
  • Loading branch information
gershnik committed Jul 25, 2022
1 parent 721983b commit db52c92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
--instance=${{ secrets.AWS_BSD_INSTANCE }} \
--instance-user=${{ secrets.AWS_BSD_INSTANCE_USER }} \
--upload-results
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION }} --paths "/bsd-repo"
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION }} --paths "/bsd-repo/*"
centos:
concurrency: centos_remote
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
--instance=${{ secrets.AWS_CENTOS_INSTANCE }} \
--instance-user=${{ secrets.AWS_CENTOS_INSTANCE_USER }} \
--upload-results
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION }} --paths "/rpm-repo"
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION }} --paths "/rpm-repo/*"
ubuntu:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
cd out
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DFETCHCONTENT_QUIET=OFF ..
../installers/deb-systemd/build.py --upload-results .. .
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION }} --paths "/apt-repo"
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION }} --paths "/apt-repo/*"
macos:
runs-on: macos-latest
Expand Down

0 comments on commit db52c92

Please sign in to comment.