Skip to content

Commit 80d4db6

Browse files
committed
test: add temporary workflow to test docker-manifest action
1 parent 9675424 commit 80d4db6

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

0 commit comments

Comments
 (0)