ci: adjustments to workflow
All checks were successful
Build, Package and Push Images / preprocess (push) Successful in 3s
Build, Package and Push Images / build (push) Successful in 29s
Build, Package and Push Images / sbom-scan (push) Successful in 34s
Build, Package and Push Images / generate-licences (push) Successful in 1m1s
Build, Package and Push Images / container-build (push) Successful in 1m39s
Build, Package and Push Images / sonarqube (push) Successful in 1m44s
Build, Package and Push Images / container-sbom-scan (push) Successful in 33s

This commit is contained in:
Timothy Schenk 2024-02-01 11:02:39 +01:00
parent 73d8e140fb
commit 6dc479d5a9
2 changed files with 14 additions and 3 deletions

View file

@ -2,6 +2,17 @@ name: Build, Package and Push Images
run-name: ${{ gitea.actor }} is building the Server application run-name: ${{ gitea.actor }} is building the Server application
on: on:
push: push:
branches:
- develop
- master
paths-ignore:
- Wiki/**
- Benchmarks/**
- .run/**
pull_request:
types:
- ready_for_review
- edited
paths-ignore: paths-ignore:
- Wiki/** - Wiki/**
- Benchmarks/** - Benchmarks/**
@ -30,7 +41,6 @@ jobs:
- name: Build - name: Build
run: | run: |
dotnet build Continuity.AuthServer -c Release dotnet build Continuity.AuthServer -c Release
# dotnet test Server.Tests -c Release
sonarqube: sonarqube:
needs: build needs: build

View file

@ -8,5 +8,6 @@
"enabled": true, "enabled": true,
"labels": ["security"] "labels": ["security"]
}, },
"extends": [":gitSignOff",":labels(dependencies)", "docker:disable", "docker:pinDigests"] "extends": [":gitSignOff",":labels(dependencies)", "docker:disable", "docker:pinDigests"],
"baseBranches": ["master", "/^release\\/.*/", "develop"]
} }