Skip to content

Commit

Permalink
Update CI workflow to trigger on tags starting with 'v'
Browse files Browse the repository at this point in the history
Add a condition to trigger the CI workflow on tags starting with 'v' to
ensure that the workflow runs when a new version is released.
  • Loading branch information
joone committed Mar 28, 2024
1 parent 10ceb8b commit 810e405
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: CI

on:
push:
branches: [ main ]
tags:
- 'v*' # Or trigger on tags starting with 'v' (e.g., v1.0.0)

jobs:
build:
Expand Down

0 comments on commit 810e405

Please sign in to comment.