Skip to content

Commit

Permalink
Refactor deploy and test workflows to exclude tags from triggering CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
jqshuv committed Oct 15, 2024
1 parent 06814b7 commit dae1172
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: 🚀 Deploy
on:
push:
tags:
- 'v*'
- 'v/*'
workflow_dispatch:

jobs:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: 🔩 Test CI
on:
push:
branches: [ "main" ]
tags: []
tags-ignore:
- 'v*'
pull_request:
branches: [ "main" ]

Expand Down

0 comments on commit dae1172

Please sign in to comment.