File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ # Temporary workflow to test docker-manifest action using existing v0.5.11 images.
2+ # Delete after manifest creation is confirmed working.
3+
4+ name : Test Docker Manifest
5+
6+ on :
7+ workflow_dispatch : {}
8+
9+ permissions :
10+ contents : read
11+
12+ env :
13+ VALIDATOR_IMAGE : ghcr.io/nvidia/eidos-validator
14+
15+ jobs :
16+ test-manifest :
17+ name : Test Manifest Creation
18+ runs-on : ubuntu-latest
19+ timeout-minutes : 5
20+ permissions :
21+ contents : read
22+ packages : write
23+ steps :
24+ - name : Checkout Code
25+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
26+
27+ - name : Authenticate to registry
28+ uses : ./.github/actions/ghcr-login
29+
30+ - name : Create multi-arch manifest
31+ uses : ./.github/actions/docker-manifest
32+ with :
33+ image : ${{ env.VALIDATOR_IMAGE }}
34+ tag : v0.5.11
You can’t perform that action at this time.
0 commit comments