switch off git context
Test build / build (push) Failing after 1m36s
Details
Test build / build (push) Failing after 1m36s
Details
This commit is contained in:
parent
d350884a0e
commit
504a027e0f
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue