Skip to content

Commit

Permalink
fix: add latest tag for docker image (#9)
Browse files Browse the repository at this point in the history
Co-authored-by: Welkin <[email protected]>
  • Loading branch information
welkin22 and Welkin authored Jun 20, 2023
1 parent ec6435b commit 339749f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
context: .
file: ./op-node/Dockerfile
push: true
tags: ${{ steps.image.outputs.IMAGE_ID }}:${{ steps.image.outputs.VERSION }}
tags: ${{ steps.image.outputs.IMAGE_ID }}:${{ steps.image.outputs.VERSION }},${{ steps.image.outputs.IMAGE_ID }}:latest

push-op-batcher:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
context: .
file: ./op-batcher/Dockerfile
push: true
tags: ${{ steps.image.outputs.IMAGE_ID }}:${{ steps.image.outputs.VERSION }}
tags: ${{ steps.image.outputs.IMAGE_ID }}:${{ steps.image.outputs.VERSION }},${{ steps.image.outputs.IMAGE_ID }}:latest
push-op-proposer:
runs-on: ubuntu-latest
if: github.event_name == 'push'
Expand Down Expand Up @@ -116,4 +116,4 @@ jobs:
context: .
file: ./op-proposer/Dockerfile
push: true
tags: ${{ steps.image.outputs.IMAGE_ID }}:${{ steps.image.outputs.VERSION }}
tags: ${{ steps.image.outputs.IMAGE_ID }}:${{ steps.image.outputs.VERSION }},${{ steps.image.outputs.IMAGE_ID }}:latest

0 comments on commit 339749f

Please sign in to comment.