File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1616 name : " Build -> Test -> Publish"
1717 runs-on : ubuntu-24.04
1818 outputs :
19- tag : ${{ steps.tag.outputs.tag }}
20- git_tag : ${{ steps.git_tag.outputs.tag }}
19+ docker_tag : ${{ steps.tag.outputs.docker_tag }}
20+ git_tag : ${{ steps.git_tag.outputs.git_tag }}
2121 steps :
2222 - name : Checkout repository
2323 uses : actions/checkout@v5
@@ -49,18 +49,18 @@ jobs:
4949 echo "distro=$distro" >> $GITHUB_OUTPUT
5050
5151 - name : Set image tag
52- id : tag
52+ id : docker_tag
5353 run : |
54- tag ="v${{ steps.playwright_version.outputs.version }}-${{ steps.distro.outputs.distro }}"
55- echo "tag=$tag " >> $GITHUB_OUTPUT
54+ docker_tag ="v${{ steps.playwright_version.outputs.version }}-${{ steps.distro.outputs.distro }}"
55+ echo "docker_tag=$docker_tag " >> $GITHUB_OUTPUT
5656
5757 - name : Set Git tag
5858 if : github.ref == 'refs/heads/main'
5959 id : git_tag
6060 run : |
6161 COMMIT_SHA=${GITHUB_SHA::7}
62- GIT_TAG ="${{ steps.tag.outputs.tag }}-${COMMIT_SHA}"
63- echo "tag=$TAG " >> $GITHUB_OUTPUT
62+ git_tag ="${{ steps.tag.outputs.tag }}-${COMMIT_SHA}"
63+ echo "git_tag=$git_tag " >> $GITHUB_OUTPUT
6464
6565 - name : Build image
6666 id : build
8585 with :
8686 context : .
8787 push : true
88- tags : ghcr.io/serenity-js/playwright:${{ steps.tag.outputs.tag }}
88+ tags : ghcr.io/serenity-js/playwright:${{ steps.tag.outputs.docker_tag }}
8989
9090 tag :
9191 name : " Tag repository"
You can’t perform that action at this time.
0 commit comments