Skip to content

Commit

Permalink
Update CI workflow to trigger on main branch push
Browse files Browse the repository at this point in the history
- Update CI workflow to trigger on push events to the main branch instead of
  specific tags. This change ensures that the CI pipeline runs for every push
  to the main branch, improving automation and visibility.
  • Loading branch information
joone committed Apr 2, 2024
1 parent 00a609c commit da8b08c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: CI

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

jobs:
build:
Expand Down

0 comments on commit da8b08c

Please sign in to comment.