From 3e279fb1547a404e1b9a5acc89dbb009840a1965 Mon Sep 17 00:00:00 2001 From: Lauren Kaviak Date: Fri, 20 Mar 2026 00:20:49 -0500 Subject: [PATCH] push the image after build --- .gitea/workflows/release-image.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release-image.yaml b/.gitea/workflows/release-image.yaml index 819612f..9b7c385 100644 --- a/.gitea/workflows/release-image.yaml +++ b/.gitea/workflows/release-image.yaml @@ -3,7 +3,7 @@ on: [push] name: Continuous Releases env: - IMAGE_TAG: ci-rust-img + IMAGE_TAG: tea.werats.gay/laurayka/ci-rust-img:latest UBUNTU_VERSION: latest jobs: @@ -14,4 +14,5 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - run: docker build . -t ${{ env.IMAGE_TAG }} --build-arg UBUNTU_VERSION=${{ env.UBUNTU_VERSION }} \ No newline at end of file + - run: docker build . -t ${{ env.IMAGE_TAG }} --build-arg UBUNTU_VERSION=${{ env.UBUNTU_VERSION }} + - run: docker push {{ env.IMAGE_TAG }} \ No newline at end of file