Skip to content

Commit

Permalink
build: update push events support
Browse files Browse the repository at this point in the history
The workflow is expanded to run on the beta branch in
addition to the main branch for both push and pull_request events.

Changes to be committed:
modified:   .github/workflows/testPublish.yml
  • Loading branch information
blackfalcon committed Jun 18, 2024
1 parent 6ac1e44 commit f58eead
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name: Test and publish
# events but only for the main branch
on:
push:
branches: [ main ]
branches: [ main, beta ]
pull_request:
branches: [ main ]
branches: [ main, beta ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down

0 comments on commit f58eead

Please sign in to comment.