File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 20
20
steps :
21
21
- uses : actions/checkout@v4
22
22
- name : Build container
23
- run : docker buildx build -f Dockerfile . -t UND-ACM /demo-ci-docker:latest -t UND-ACM /demo-ci-docker:${{ needs.tag.outputs.tag }}
23
+ run : docker buildx build -f Dockerfile . -t und-acm /demo-ci-docker:latest -t und-acm /demo-ci-docker:${{ needs.tag.outputs.tag }}
24
24
- name : Export container
25
- run : docker save UND-ACM /demo-ci-docker:latest | gzip - > ${{ needs.tag.outputs.tag }}.tar.gz
25
+ run : docker save und-acm /demo-ci-docker:latest | gzip - > ${{ needs.tag.outputs.tag }}.tar.gz
26
26
- uses : actions/upload-artifact@v4
27
27
name : Upload artifact
28
28
with :
40
40
- name : Load image
41
41
run : gunzip -c ${{ needs.tag.outputs.tag }}.tar.gz | docker load
42
42
- name : Spin up container
43
- run : docker run -d --name helloworld UND-ACM /demo-ci-docker:latest
43
+ run : docker run -d --name helloworld und-acm /demo-ci-docker:latest
44
44
- name : Await healthy or failed status
45
45
run : |
46
46
while(true); do
You can’t perform that action at this time.
0 commit comments