Marko Oldenburg
6a2fc1976b
Some checks failed
Build And Push / release-image (push) Failing after 37s
36 lines
921 B
YAML
36 lines
921 B
YAML
#
|
|
# .gitea/workflows/gitea-ci.yaml
|
|
#
|
|
|
|
name: Build And Push
|
|
run-name: ${{ gitea.actor }} is runs ci pipeline
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
release-image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- 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
|
|
with: # replace it with your local IP
|
|
config-inline: |
|
|
[registry."registry.tuxnet.lan"]
|
|
http = true
|
|
insecure = true
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: |
|
|
linux/amd64
|
|
push: true
|
|
tags: | # replace it with your local IP and tags
|
|
registry.tuxnet.lan/web/dokuwiki:20240206.2.0-debian-12-r3 |