We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1aeda2 commit 4262219Copy full SHA for 4262219
1 file changed
.github/workflows/tests.yml
@@ -11,15 +11,16 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v6
14
- - name: Run docker action and set output for testing
+ - name: Run docker action and save version for testing
15
uses: ./
16
id: run-docker
17
with:
18
image: docker:29.0.4
19
options: -v ${{ github.workspace }}:/work
20
run: |
21
- # write into the mounted repo so the runner can read it
22
echo "$DOCKER_VERSION" > /work/docker_version
+ cat /work/docker_version
23
+ - run: cat docker_version
24
- name: Test the output
25
uses: actions/github-script@v8
26
0 commit comments