We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb104df commit ba3be69Copy full SHA for ba3be69
1 file changed
.github/workflows/cd.yml
@@ -183,11 +183,18 @@ jobs:
183
- name: Invalidate CloudFront
184
run:
185
find . -name tea-\* |
186
- sed 's/^.//' |
+ sed 's_^./binaries__' |
187
xargs
188
aws cloudfront create-invalidation
189
--distribution-id ${{ secrets.AWS_CF_DISTRIBUTION_ID }}
190
- --paths
+ --paths $STATIC_PATHS
191
+ env:
192
+ STATIC_PATHS: >-
193
+ /Darwin/arm64
194
+ /Darwin/x86_64
195
+ /Linux/arm64
196
+ /Linux/aarch64
197
+ /Linux/x86_64
198
199
smoke-teaxyz-setup-github-action:
200
needs: [upload-binaries]
0 commit comments