Skip to content

Commit

Permalink
Fix Update latest when release (#57)
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel-Trintinalia <[email protected]>
  • Loading branch information
Gabriel-Trintinalia authored Aug 22, 2024
1 parent 7e0921e commit f3ff541
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,11 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: output.md
append_body: true
append_body: true

- name: Pull, Tag, and Push Docker Image as latest
if: github.event_name == 'release'
run: |
docker pull consensys/linea-besu-package:${{ steps.get_version.outputs.VERSION }}
docker tag consensys/linea-besu-package:${{ steps.get_version.outputs.VERSION }} consensys/linea-besu-package:latest
docker push consensys/linea-besu-package:latest

0 comments on commit f3ff541

Please sign in to comment.