Move deb building out of the build pipeline

This commit is contained in:
Aaron Reisman 2023-01-22 13:01:12 -06:00
parent 7d3a39c693
commit 6cfd2dea96
6 changed files with 12 additions and 31 deletions

View file

@ -15,11 +15,6 @@ on:
description: 'Skip running unit tests'
required: false
default: true
build_deb:
type: boolean
description: 'Build Debian package'
required: false
default: false
jobs:
windows:
@ -32,12 +27,4 @@ jobs:
uses: ./.github/workflows/build-linux.yml
with:
version_override: ${{ inputs.version_override }}
run_unit_tests: ${{ inputs.run_unit_tests }}
linux_deb:
needs: [linux]
if: inputs.build_deb
uses: ./.github/workflows/build-deb.yml
with:
version: ${{ needs.linux.outputs.version }}
run_unit_tests: ${{ inputs.run_unit_tests }}