Skip to content

Commit

Permalink
ci: only run publish actions on um40
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton authored May 24, 2024
1 parent 939501b commit de8efa7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ env:
on:
push:
branches: [ "um40" ]
workflow_dispatch:
pull_request:
branches: [ "um40" ]

jobs:
#### DOCKER ######
Expand Down Expand Up @@ -114,6 +117,7 @@ jobs:
fail-fast: false
runs-on: ubuntu-latest
needs: docker
if: github.event_name != 'pull_request'

steps:
- name: Install dependencies
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-katsu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ env:
on:
push:
branches: [ "um40" ]
workflow_dispatch:
pull_request:
branches: [ "um40" ]

jobs:
#### BASE IMAGES ####
Expand Down Expand Up @@ -185,6 +188,7 @@ jobs:
needs:
- live-iso
- image
if: github.event_name != 'pull_request'

steps:
- name: Download artifacts
Expand Down

0 comments on commit de8efa7

Please sign in to comment.