File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2121 - uses : actions/checkout@v3
2222 - name : Extract tag
2323 id : extract_tag
24- run : echo "::set-output name= tag:: $(echo $(git describe --tags --always))"
24+ run : echo "tag= $(echo $(git describe --tags --always))" >> $GITHUB_OUTPUT
2525 - name : Print container tag
2626 run : echo "Running dev build for ${{ steps.extract_tag.outputs.tag }}"
2727
6464 go-version : ' 1.20'
6565 - name : Extract tag
6666 id : extract_tag
67- run : echo "::set-output name= tag:: $(echo $(git describe --tags --always))"
67+ run : echo "tag= $(echo $(git describe --tags --always))" >> $GITHUB_OUTPUT
6868 - name : Print container tag
6969 run : echo "Running dev build for ${{ steps.extract_tag.outputs.tag }}"
7070
Original file line number Diff line number Diff line change 2020 - uses : actions/checkout@v3
2121 - name : Extract tag
2222 id : extract_tag
23- run : echo "::set-output name= tag:: $(echo ${GITHUB_REF#refs/tags/v})"
23+ run : echo "tag= $(echo ${GITHUB_REF#refs/tags/v})" >> $GITHUB_OUTPUT
2424 - name : Print container tag
2525 run : echo "Running release build for ${{ steps.extract_tag.outputs.tag }}"
2626
6363 go-version : ' 1.20'
6464 - name : Extract tag
6565 id : extract_tag
66- run : echo "::set-output name= tag:: $(echo ${GITHUB_REF#refs/tags/v})"
66+ run : echo "tag= $(echo ${GITHUB_REF#refs/tags/v})" >> $GITHUB_OUTPUT
6767 - name : Print container tag
6868 run : echo "Running release build for ${{ steps.extract_tag.outputs.tag }}"
6969
You can’t perform that action at this time.
0 commit comments