mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
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
|
- name: List generated files
|
||||||
run: ls -l *.deb
|
run: ls -l *.deb
|
||||||
build-packages-manually:
|
build-packages-manually:
|
||||||
if: github.event.workflow_dispatch
|
if: github.event_name != 'pull_request' && github.event_name != 'push'
|
||||||
name: Build Packages Manually
|
name: Build Packages Manually
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
2
.github/workflows/rpm_packages.yml
vendored
2
.github/workflows/rpm_packages.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- name: List generated files
|
- name: List generated files
|
||||||
run: ls -l *.rpm
|
run: ls -l *.rpm
|
||||||
build-package-manually:
|
build-package-manually:
|
||||||
if: github.event.workflow_dispatch
|
if: github.event_name != 'pull_request' && github.event_name != 'push'
|
||||||
name: Build Packages Manually
|
name: Build Packages Manually
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue