wip
All checks were successful
Release CI action / build-and-push-container (push) Successful in 35s
All checks were successful
Release CI action / build-and-push-container (push) Successful in 35s
This commit is contained in:
24
.gitea/workflows/build.yml
Normal file
24
.gitea/workflows/build.yml
Normal 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
|
Reference in New Issue
Block a user