From 504a027e0f91c2580e1a705bb9c2887d11bcb5ec Mon Sep 17 00:00:00 2001 From: minish Date: Thu, 3 Aug 2023 21:24:22 -0400 Subject: [PATCH] switch off git context --- .gitea/workflows/build.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c819292..beacec9 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -8,9 +8,10 @@ jobs: build: runs-on: ubuntu-latest steps: - # is this only for vms??? - # - name: Set up QEMU - # uses: docker/setup-qemu-action@v2 + - name: Checkout + uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to Docker Hub @@ -18,9 +19,10 @@ jobs: with: registry: git.min.rip username: ${{ gitea.repository_owner }} - password: ${{ secrets.REGISTRY_PASSWORD }} + password: ${{ gitea.token }} - name: Build and push uses: docker/build-push-action@master with: push: true - tags: ${{ gitea.repository }}:latest + context: . + tags: ${{ gitea.repository }}:testing