2525 registry : ghcr.io
2626 username : ${{ github.actor }}
2727 password : ${{ secrets.GITHUB_TOKEN }}
28-
28+
2929 - name : Set latest tag
3030 if : github.event.action == 'released'
3131 run : |
@@ -34,17 +34,17 @@ jobs:
3434 - name : Set alpha tag
3535 if : github.event.action == 'prereleased' && contains(github.ref, 'alpha')
3636 run : |
37- echo "DOCKER_TAGS=${{ env.DOCKER_TAGS }},ghcr.io/${{ github.repository_owner }}/firefly:alpha" >> $GITHUB_ENV
37+ echo "DOCKER_TAGS=${{ env.DOCKER_TAGS }},ghcr.io/${{ github.repository_owner }}/firefly:alpha" >> $GITHUB_ENV
3838
3939 - name : Set beta tag
4040 if : github.event.action == 'prereleased' && contains(github.ref, 'beta')
4141 run : |
42- echo "DOCKER_TAGS=${{ env.DOCKER_TAGS }},ghcr.io/${{ github.repository_owner }}/firefly:beta" >> $GITHUB_ENV
42+ echo "DOCKER_TAGS=${{ env.DOCKER_TAGS }},ghcr.io/${{ github.repository_owner }}/firefly:beta" >> $GITHUB_ENV
4343
4444 - name : Set rc tag
4545 if : github.event.action == 'prereleased' && contains(github.ref, 'rc')
4646 run : |
47- echo "DOCKER_TAGS=${{ env.DOCKER_TAGS }},ghcr.io/${{ github.repository_owner }}/firefly:rc" >> $GITHUB_ENV
47+ echo "DOCKER_TAGS=${{ env.DOCKER_TAGS }},ghcr.io/${{ github.repository_owner }}/firefly:rc" >> $GITHUB_ENV
4848
4949 - name : Set build tag
5050 id : build_tag_generator
6767 echo ::set-output name=UI_RELEASE::$(cat manifest.json | jq -r '.ui.release')
6868
6969 - name : Build and push
70- uses : docker/build-push-action@v2
70+ uses : docker/build-push-action@v4
7171 with :
72+ provenance : false
7273 context : ./
7374 file : ./Dockerfile
7475 builder : ${{ steps.buildx.outputs.name }}
8889 SOLIDITY_BUILDER_TAG=${{ steps.manifest.outputs.SOLIDITY_BUILDER_TAG }}
8990 BASE_TAG=${{ steps.manifest.outputs.BASE_TAG }}
9091 UI_TAG=${{ steps.manifest.outputs.UI_TAG }}
91- UI_RELEASE=${{ steps.manifest.outputs.UI_RELEASE }}
92+ UI_RELEASE=${{ steps.manifest.outputs.UI_RELEASE }}
0 commit comments