From 03af14d425f49390848722ca0ef260d128921ae3 Mon Sep 17 00:00:00 2001 From: merith-tk Date: Sun, 3 Nov 2024 14:24:02 -0800 Subject: [PATCH] update workflows --- .forgejo/workflows/build-on-commit.yml | 16 ++++++++++++---- .forgejo/workflows/build-on-tag.yml | 4 ++++ 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build-on-commit.yml b/.forgejo/workflows/build-on-commit.yml index bd3f5c9..e8f0d2e 100644 --- a/.forgejo/workflows/build-on-commit.yml +++ b/.forgejo/workflows/build-on-commit.yml @@ -21,12 +21,20 @@ jobs: echo "REPO_HOST=$(echo "${{ github.server_url }}" | sed 's~http[s]*://~~g')" >> $GITHUB_ENV echo "REPO_PATH=${{ github.repository }}" >> $GITHUB_ENV - - name: Build and push Docker image + - name: Login to OCI registry run: | - # Build Docker image + echo "${{ secrets.OCI_TOKEN }}" | docker login $REPO_HOST -u "${{ secrets.OCI_USER }}" --password-stdin + + - name: Build and push Docker images + run: | + # Build Docker image with commit SHA docker build -t $REPO_HOST/$REPO_PATH:${{ github.sha }} . - docker tag $REPO_HOST/$REPO_PATH:nightly + docker push $REPO_HOST/$REPO_PATH:${{ github.sha }} + + # Build Docker image with nightly tag + docker tag $REPO_HOST/$REPO_PATH:${{ github.sha }} $REPO_HOST/$REPO_PATH:nightly docker push $REPO_HOST/$REPO_PATH:nightly - # Remove the local image to save storage + # Remove local images to save storage docker rmi $REPO_HOST/$REPO_PATH:${{ github.sha }} + docker rmi $REPO_HOST/$REPO_PATH:nightly diff --git a/.forgejo/workflows/build-on-tag.yml b/.forgejo/workflows/build-on-tag.yml index 7f3f832..888102b 100644 --- a/.forgejo/workflows/build-on-tag.yml +++ b/.forgejo/workflows/build-on-tag.yml @@ -31,3 +31,7 @@ jobs: # Tag and push latest docker tag $REPO_HOST/$REPO_PATH:$TAG $REPO_HOST/$REPO_PATH:latest docker push $REPO_HOST/$REPO_PATH:latest + + # Remove the local image to save storage + docker rmi $REPO_HOST/$REPO_PATH:$TAG + docker rmi $REPO_HOST/$REPO_PATH:latest \ No newline at end of file