Skip to content

Commit f74f9ca

Browse files
authored
Stop running update-snapshots nightly. (#692)
1 parent fc56ce1 commit f74f9ca

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/update-snapshots.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: update-snapshots
22

33
on:
4-
schedule:
5-
- cron: "0 15 * * *" # every day 11am EST
4+
workflow_dispatch:
65

76
jobs:
87
check:
@@ -47,8 +46,19 @@ jobs:
4746
working-directory: tests/integration
4847
run: yarn install
4948

50-
- name: Update Snapshots
49+
- name: Update Snapshots (amd64)
5150
env:
51+
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
5262
UPDATE_SNAPSHOTS: true
5363
BUILD_LAYERS: true
5464
DD_API_KEY: ${{ secrets.DD_API_KEY }}

0 commit comments

Comments
 (0)