This commit is contained in:
Tizian.Breuch
2025-08-13 21:42:37 +02:00
parent 02c2a0c387
commit 0e09f3e5e1
5 changed files with 642 additions and 52 deletions

View File

@@ -0,0 +1,30 @@
name: Build and Push Docker Image
on:
push:
branches:
- master
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: gitea.tzbre.dev
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: gitea.tzbre.dev/admin/shopsolution-frontend:latest