Set up
All checks were successful
Create and publish container / build_container (push) Successful in 5s

This commit is contained in:
2025-12-22 17:54:23 +01:00
commit 15c34ae2c0
6 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
name: Create and publish container
on:
push
jobs:
build_container:
runs_on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v6
with:
ref: main
- name: Build and upload image
run: |
docker login -u ${{ variables.REGISTRY_USER_USERNAME }} -p ${{ secrets.REGISTRY_USER_PASSWORD }}
./build-image.sh ${{ variables.REGISTRY_URL }}