Skip to content

Commit

Permalink
Update GitHub Actions workflow to trigger on versioned tags
Browse files Browse the repository at this point in the history
  • Loading branch information
arvvoid committed Dec 4, 2024
1 parent 50f28ca commit 9b47f3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main
tags:
- main
- 'v*'

pull_request:
branches:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
release:
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/main')
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 9b47f3b

Please sign in to comment.