-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 951 Bytes
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
# This example file will enable docker-related checks on push or PR to the main
# branch.
# It will also run the checks every weeknight at midnight UTC
#
# Note the @main in `uses:` on the last line. This will call the latest version
# of the workflow from the `main` brnach in the RMI-PACTA/actions repo. You can
# also specify a tag from that repo, or a commit SHA to pin action versions.
on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 0 * * 1,2,3,4,5'
workflow_dispatch:
name: docker
jobs:
docker:
name: Docker actions
uses: RMI-PACTA/actions/.github/workflows/docker.yml@main
with:
build-platform: |
[
"linux/amd64"
]
do-lint: false
do-check-r-sysdeps: false
run-scenario-prep:
uses: ./.github/workflows/run-scenario-preparation.yml
needs: [docker]
secrets: inherit
with:
image-tag: ${{ needs.docker.outputs.full-image-name }}