Release flow fixed
Test and Release / test-backend (push) Successful in 6s
Test and Release / test-frontend (push) Failing after 4s
Test and Release / build-docker (backend) (push) Has been skipped
Test and Release / build-docker (frontend) (push) Has been skipped

This commit is contained in:
2026-07-11 19:41:48 +02:00 Verified
parent 0679ab274b
commit 7e3d1fef3d
3 changed files with 81 additions and 84 deletions
+81
View File
@@ -0,0 +1,81 @@
name: Test and Release
on:
push:
branches: ["**"]
pull_request:
branches: ["main", "master"]
release:
types: [published]
jobs:
test-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
cd backend
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
cd backend
pip install pytest pytest-cov
pytest
test-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- name: Install dependencies
run: |
cd frontend
npm ci
- name: Test with NPM
run: |
cd frontend
npm test -- run --exclude "**/*.live.test.ts"
build-docker:
needs: [test-backend, test-frontend]
runs-on: ubuntu-latest
if: github.event_name == 'release'
permissions:
packages: write
contents: read
strategy:
matrix:
service: [backend, frontend]
steps:
- uses: actions/checkout@v4
- name: Log in to Registry
uses: docker/login-action@v3
with:
registry: git.stws.cc
username: ${{ github.actor }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: git.stws.cc/${{ github.repository }}/${{ matrix.service }}
tags: |
type=ref,event=tag
type=raw,value=latest
- name: Build and Push
uses: docker/build-push-action@v6
with:
context: ./${{ matrix.service }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}