diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 3812ef6..77afde9 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-latest steps: - # is this only for vms??? asdfasdfsaasdfasd + # is this only for vms??? # - name: Set up QEMU # uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx @@ -17,12 +17,10 @@ jobs: uses: docker/login-action@v2 with: registry: git.min.rip - username: ${{ gitea.actor }} - password: ${{ secrets.GITEA_TOKEN }} + username: ${{ gitea.repository_owner }} + password: ${{ secrets.REGISTRY_PASSWORD }} - name: Build and push - uses: docker/build-push-action@v4 - env: - ACTIONS_RUNTIME_TOKEN: '' + uses: docker/build-push-action@master with: push: true - tags: min/actions-test:latest + tags: ${{ gitea.repository_owner }}/${{ gitea.repository }}:latest