Skip to content

Commit 5d28cdd

Browse files
committed
echo output to new GITHUB output variable
1 parent bde7647 commit 5d28cdd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
tags: nextgenusfs/funannotate-slim:latest
4444

4545
- name: Image digest
46-
run: echo ${{ steps.docker_build.outputs.digest }}
46+
run: echo ${{ steps.docker_build.outputs.digest }} >> $GITHUB_OUTPUT
4747

4848
- name: Repository Dispatch
4949
uses: peter-evans/repository-dispatch@v1

.github/workflows/release-triggered.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ jobs:
4848
tags: nextgenusfs/funannotate:${{ steps.get_release.outputs.tag_name }}
4949

5050
- name: Image digest
51-
run: echo ${{ steps.docker_build.outputs.digest }}
51+
run: echo ${{ steps.docker_build.outputs.digest }} >> $GITHUB_OUTPUT
5252

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Test git release scrapper
3232
id: test_release
33-
run: echo ${{ steps.get_release.outputs.tag_name }}
33+
run: echo ${{ steps.get_release.outputs.tag_name }} >> $GITHUB_OUTPUT
3434

3535
- name: Login to Docker Hub
3636
uses: docker/login-action@v1
@@ -52,7 +52,7 @@ jobs:
5252
tags: nextgenusfs/funannotate-slim:${{ steps.get_release.outputs.tag_name }}
5353

5454
- name: Image digest
55-
run: echo ${{ steps.docker_build.outputs.digest }}
55+
run: echo ${{ steps.docker_build.outputs.digest }} >> $GITHUB_OUTPUT
5656

5757
- name: Repository Dispatch
5858
uses: peter-evans/repository-dispatch@v1

.github/workflows/triggered-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
tags: nextgenusfs/funannotate:latest
4343

4444
- name: Image digest
45-
run: echo ${{ steps.docker_build.outputs.digest }}
45+
run: echo ${{ steps.docker_build.outputs.digest }} >> $GITHUB_OUTPUT
4646

4747
- name: Repository Dispatch
4848
uses: peter-evans/repository-dispatch@v1

0 commit comments

Comments
 (0)