We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9dff8 commit 80178a8Copy full SHA for 80178a8
.github/workflows/_container.yml
@@ -33,6 +33,7 @@ jobs:
33
# Need load and tags so we can test it below
34
load: true
35
tags: tag_for_testing
36
+ outputs: dest=${{ runner.temp }}/myimage.tar
37
38
- name: Test cli works in cached runtime image
39
run: docker run --rm tag_for_testing --version
@@ -41,4 +42,4 @@ jobs:
41
42
uses: actions/upload-artifact@v4
43
with:
44
name: container
- path: container
45
+ path: ${{ runner.temp }}/myimage.tar
.github/workflows/_push_container.yml
@@ -10,7 +10,11 @@ jobs:
10
uses: actions/download-artifact@v4
11
12
13
+ path: ${{ runner.temp }}
14
+
15
+ - name: Load image
16
+ run: |
17
+ docker load --input ${{ runner.temp}}/myimage.tar
18
19
- name: Create tags for publishing image
20
id: meta
0 commit comments