From 0852e062a4f607156820352b86a0a91f061275a3 Mon Sep 17 00:00:00 2001 From: Joseph Nelson Date: Tue, 28 Apr 2026 22:28:47 -0700 Subject: [PATCH] trying a different build yaml for push --- .gitea/workflows/build.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index d24b5e0..97bd748 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -19,11 +19,7 @@ jobs: username: ${{ gitea.actor }} password: ${{ secrets.RUNNER_TOKEN }} - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - push: true - tags: - ref: ${{ gitea.sha }} # Use SHA for a unique tag - image: https://gitea.nelson-household.com/joseph.nelson4456/koillection-uploader/koillection-uploader # Adjust path/name + - name: Build and Push Image + run: | + docker build -t gitea.nelson-household.com/joseph.nelson4456/koillection-uploader/koillection-uploader:${{ github.sha }} . + docker push gitea.nelson-household.com/joseph.nelson4456/koillection-uploader/koillection-uploader:${{ github.sha }}