From 6cf26da4dfa6dd3316c79c6124a1be22590137dc Mon Sep 17 00:00:00 2001 From: greysoh Date: Sat, 4 May 2024 19:36:42 -0400 Subject: [PATCH] fix: Also build for latest. --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce20f19..3f9cc89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,5 +30,6 @@ jobs: - name: build images run: | docker build ./api --tag ghcr.io/greysoh/api:$(cat VERSION) - docker push ghcr.io/greysoh/api:latest - docker push ghcr.io/greysoh/api:$(cat VERSION) \ No newline at end of file + docker tag ghcr.io/greysoh/api:$(cat VERSION) ghcr.io/greysoh/api:latest + docker push ghcr.io/greysoh/api:$(cat VERSION) + docker push ghcr.io/greysoh/api:latest \ No newline at end of file