web-ci/.forgejo/workflows/build.yaml

44 lines
1 KiB
YAML
Raw Normal View History

2023-07-25 11:30:41 +02:00
name: Build And Publish Docker
on:
push:
branches:
- "master"
2023-07-25 11:30:41 +02:00
jobs:
build:
2024-06-04 21:59:21 -04:00
runs-on: debian-bookworm
2023-07-25 11:30:41 +02:00
steps:
- uses: actions/checkout@v3
2024-06-04 16:23:00 -04:00
- name: Install deps
2024-06-04 16:25:52 -04:00
run: curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh
2024-06-04 16:23:00 -04:00
2023-07-25 11:30:41 +02:00
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Login to Self-Hosted Registry
uses: docker/login-action@v2
2023-07-25 11:30:41 +02:00
with:
registry: git.myco.systems
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2023-07-25 11:30:41 +02:00
- name: Build and Push Extended Version
uses: docker/build-push-action@v4
2023-07-25 11:30:41 +02:00
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./Dockerfile
platforms: linux/amd64
2023-07-25 11:30:41 +02:00
push: true
tags: |
2024-06-08 05:44:25 -04:00
git.myco.systems/mycosystems/hugo-ci:latest