8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc56ce1 commit f74f9caCopy full SHA for f74f9ca
.github/workflows/update-snapshots.yml
@@ -1,8 +1,7 @@
1
name: update-snapshots
2
3
on:
4
- schedule:
5
- - cron: "0 15 * * *" # every day 11am EST
+ workflow_dispatch:
6
7
jobs:
8
check:
@@ -47,8 +46,19 @@ jobs:
47
46
working-directory: tests/integration
48
run: yarn install
49
50
- - name: Update Snapshots
+ - name: Update Snapshots (amd64)
51
env:
+ ARCH: amd64
52
+ UPDATE_SNAPSHOTS: true
53
+ BUILD_LAYERS: true
54
+ DD_API_KEY: ${{ secrets.DD_API_KEY }}
55
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
56
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
57
+ run: ./scripts/run_integration_tests.sh
58
+
59
+ - name: Update Snapshots (arm64)
60
+ env:
61
+ ARCH: arm64
62
UPDATE_SNAPSHOTS: true
63
BUILD_LAYERS: true
64
DD_API_KEY: ${{ secrets.DD_API_KEY }}
0 commit comments