Skip to content

Commit

Permalink
[cd] fix cloudfront invalidation paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Sep 17, 2023
1 parent b87b214 commit c7ea8ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cd.www.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
cp tea out/$2/$3
gzip tea
mv tea.gz out/$2/$3.gz
echo "INVALIDATION_PATHS=/$2/$3 /$2/$3.tgz /$2/$3.gz $INVALIDATION_PATHS" >> $GITHUB_ENV
INVALIDATION_PATHS="$INVALIDATION_PATHS /$2/$3 /$2/$3.tgz /$2/$3.gz"
echo "INVALIDATION_PATHS=$INVALIDATION_PATHS" >> $GITHUB_ENV
}
for filename in tea-*+*+*.tar.xz; do
Expand Down

0 comments on commit c7ea8ff

Please sign in to comment.