Files
alpine-jekyll/.gitea/workflows/build_push.yaml
ebner 81c3a72415
All checks were successful
Build and Publish Docker Image / docker (push) Successful in 35s
add workflow - define image
2025-06-05 13:55:48 +02:00

29 lines
633 B
YAML

name: Build and Publish Docker Image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest-intranet
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: gitea.psi.ch
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: gitea.psi.ch/${{ github.repository }}:latest