Skip to content

CI: Improve build pipeline #10

CI: Improve build pipeline

CI: Improve build pipeline #10

Workflow file for this run

name: On Push
permissions: write-all
on:
push:
branches: [ "main", "dev", "gh_actions" ]
paths-ignore:
- 'README.md'
- 'docs/**'
jobs:
build-debug:
uses: ./.github/workflows/build.yml
with:
cmake-preset: x86-debug
upload-artifact-dll: debug-dll
upload-artifact-dll-pdb: debug-dll-pdb
upload-artifact-vdf: debug-vdf
build-release:
uses: ./.github/workflows/build.yml
with:
cmake-preset: x86-release
upload-artifact-dll: release-dll
upload-artifact-vdf: release-vdf
build-release-pdb:
uses: ./.github/workflows/build.yml
with:
cmake-preset: x86-release-pdb
upload-artifact-dll-pdb: release-dll-pdb
upload-artifact-vdf: release-vdf-pdb