switch off git context
Test build / build (push) Failing after 1m36s Details

This commit is contained in:
minish 2023-08-03 21:24:22 -04:00
parent d350884a0e
commit 504a027e0f
Signed by: min
GPG Key ID: FEECFF24EF0CE9E9
1 changed files with 7 additions and 5 deletions

View File

@ -8,9 +8,10 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# is this only for vms??? - name: Checkout
# - name: Set up QEMU uses: actions/checkout@v3
# uses: docker/setup-qemu-action@v2 - name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub - name: Login to Docker Hub
@ -18,9 +19,10 @@ jobs:
with: with:
registry: git.min.rip registry: git.min.rip
username: ${{ gitea.repository_owner }} username: ${{ gitea.repository_owner }}
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ gitea.token }}
- name: Build and push - name: Build and push
uses: docker/build-push-action@master uses: docker/build-push-action@master
with: with:
push: true push: true
tags: ${{ gitea.repository }}:latest context: .
tags: ${{ gitea.repository }}:testing