Skip to content

Commit

Permalink
Disable building packages unless manually triggered for now
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Bottriell <ryan@bottriell.ca>
  • Loading branch information
rydrman committed Apr 2, 2022
1 parent 9871111 commit 9fba4f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
make_packages:
runs-on: ubuntu-latest
needs: build
# we only build all the packages on master, or when
# we only build all the packages on master, and when
# it is manually triggered by someone to run
if: github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch'
if: github.ref == 'refs/heads/master' && github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v2
- name: Download Deps
Expand Down

0 comments on commit 9fba4f2

Please sign in to comment.