File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 88name : Daily scan
99
1010on :
11- schedule :
12- - cron : ' 0 18 * * *' # scheduled to run at 18:00 UTC every day
11+ schedule : # scheduled to run at 14:00, 20:00, 02:00 UTC every day
12+ - cron : ' 0 14 * * *' # 6:00/7:00 PST/PDT (14:00 UTC)
13+ - cron : ' 0 20 * * *' # 12:00/13:00 PST/PDT (20:00 UTC)
14+ - cron : ' 0 02 * * *' # 18:00/19:00 PST/PDT (02:00 UTC)
1315 workflow_dispatch : # be able to run the workflow on demand
1416
1517env :
Original file line number Diff line number Diff line change 3838 run : npm ci
3939 - name : Compile all NPM projects
4040 run : npm run compile
41+ - name : Build Tarball and Image Files
42+ uses : ./.github/actions/artifacts_build
43+ with :
44+ image_uri_with_tag : pr-build/${{ matrix.node }}
45+ push_image : false
46+ load_image : true
47+ node_version : ${{ matrix.node }}
48+ package_name : aws-distro-opentelemetry-node-autoinstrumentation
49+ os : ubuntu-latest
4150 - name : Build Lambda Layer
4251 run : npm run build-lambda
4352 - name : Unit tests (Full)
You can’t perform that action at this time.
0 commit comments