Skip to content

Commit

Permalink
Housekeeping.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjdhjd committed Oct 12, 2023
1 parent e56fa49 commit 7717347
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
build:
name: 'Build package'

# Build only if we've received a push or release event with an appropriate tag (aka v1.2.3).
if: github.event_name == 'push' || (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v'))
# Build only if we've received a push, manual workflow dispatch, or release event with a release tag (aka v1.2.3).
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v'))

# Create the build matrix for all the environments we're validating against.
strategy:
Expand Down

0 comments on commit 7717347

Please sign in to comment.