diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 16:12:07 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 16:12:07 +0200 |
commit | f974283a84351338bf9ef0cb08251520df9d9a69 (patch) | |
tree | 0e5f288134b335d9ab062e30c1dfb5d2f6bc8c10 | |
parent | a64276b48689acba8d4a262cf120c3916372880d (diff) |
cd: fix tag for latest
-rw-r--r-- | .github/workflows/cd.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e5a0ebe..8230bbb 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -38,6 +38,7 @@ jobs: echo IMAGE_ID=$IMAGE_ID echo VERSION=$VERSION docker tag $IMAGE_NAME $IMAGE_ID:$VERSION + docker tag $IMAGE_NAME $IMAGE_ID:latest docker push $IMAGE_ID:$VERSION docker push $IMAGE_ID:latest |