add build action config

This commit is contained in:
DanielS
2026-06-22 21:12:46 +02:00
parent ba24ee33e6
commit 8c990b9628
729 changed files with 25605 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
name: Production Build
on:
push:
branches:
- productive
jobs:
build:
runs-on: webserver
steps:
- name: Code auschecken
uses: actions/checkout@v4
- name: Abhängigkeiten installieren
run: npm install
- name: Production-Build generieren
run: npm run build

View File

@@ -0,0 +1,18 @@
name: Staging Build
on:
push:
branches:
- staging
jobs:
build:
runs-on: webserver
steps:
- name: Code auschecken
uses: actions/checkout@v4
- name: Abhängigkeiten installieren
run: npm install
- name: Staging-Build generieren
run: npm run build -- --configuration=staging