Asger Gitz-Johansen
1450f0c639
Some checks failed
Release CI action / build-and-push-container (push) Failing after 35s
25 lines
732 B
YAML
25 lines
732 B
YAML
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 buildx build --platform linux/amd64,linux/arm64 -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
|