Adjust GitHub Actions condition for manual pipeline execution
This commit is contained in:
parent
4b0648f3d7
commit
8602089a1e
2 changed files with 2 additions and 2 deletions
2
.github/workflows/debian_packages.yml
vendored
2
.github/workflows/debian_packages.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
- name: List generated files
|
||||
run: ls -l *.deb
|
||||
build-packages-manually:
|
||||
if: github.event.workflow_dispatch
|
||||
if: github.event_name != 'pull_request' && github.event_name != 'push'
|
||||
name: Build Packages Manually
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
2
.github/workflows/rpm_packages.yml
vendored
2
.github/workflows/rpm_packages.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
|||
- name: List generated files
|
||||
run: ls -l *.rpm
|
||||
build-package-manually:
|
||||
if: github.event.workflow_dispatch
|
||||
if: github.event_name != 'pull_request' && github.event_name != 'push'
|
||||
name: Build Packages Manually
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue