Skip to content

Commit

Permalink
Update GitHub Actions workflow triggers
Browse files Browse the repository at this point in the history
- Modify the workflow to trigger on both push events to the main branch and when a new tag that starts with 'v' is created.
- This change allows the workflow to run for both regular updates to the main branch and when preparing a new release."
  • Loading branch information
aaghamohammadi committed Dec 12, 2023
1 parent 77c4449 commit 33bf87f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- 'main'
tags:
- 'v*'

jobs:
build_source_dist:
Expand Down

0 comments on commit 33bf87f

Please sign in to comment.