initial commit
All checks were successful
Build, / build-image (push) Successful in 41s

This commit is contained in:
2026-02-22 15:01:18 +01:00
commit 33de4999ce
8 changed files with 386 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
name: Build,
run-name: ${{ gitea.actor }} is building, testing and deploying the static page
on: [push]
jobs:
build-image:
runs-on: ubuntu-latest
if: gitea.ref == 'refs/heads/main'
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
github-server-url: 'https://git.secretmine.de/'
- name: Login to Registry
uses: docker/login-action@v3
with:
registry: git.secretmine.de
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build Image
uses: docker/build-push-action@v5
with:
file: Containerfile
context: .
push: true
tags: git.secretmine.de/secretminede/couplequestions:latest