wip
All checks were successful
Release CI action / build-and-push-container (push) Successful in 35s

This commit is contained in:
2024-12-01 09:55:16 +01:00
parent 7e84b198fc
commit 02a84b7d37
3 changed files with 84 additions and 14 deletions

View File

@ -0,0 +1,24 @@
name: Release CI action
run-name: ${{ gitea.repository }} release
on:
push:
branches:
- main
jobs:
build-and-push-container:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: build container
run: docker build -t git.gtz.dk/${{ gitea.repository }}:latest .
- name: login
uses: docker/login-action@v3
with:
# NOTE: See https://gitea.com/gitea/docs/pulls/77/files
registry: git.gtz.dk
username: ${{ gitea.actor }}
password: ${{ secrets.PACKAGE_TOKEN }}
- name: push container
run: docker push git.gtz.dk/${{ gitea.repository }}:latest