TEST: build
Some checks failed
Build docker container / Build image (push) Failing after 4s

This commit is contained in:
2025-12-18 00:31:15 +01:00
parent 5bf3f9cf6b
commit 16d6c2a3a1
2 changed files with 13 additions and 13 deletions

View File

@@ -0,0 +1,35 @@
name: Workflow Example
on:
- push
jobs:
Build and push image:
runs-on: ubuntu
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Login to registry
uses: docker/login-action@v2
with:
registry: http://localhost:3000
username: <username>
password: <application-token>
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
localhost:3000/${{ gitea.repository }}:latest
localhost:3000/${{ gitea.repository }}:${{ gitea.sha }}