Skip to content

Commit

Permalink
feat(ci): Don't run build or test on tags (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
leviem1 authored Sep 29, 2024
1 parent 5f8679a commit 3c2eeec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ concurrency:
jobs:
build:
runs-on: ${{ matrix.os }}
if: github.ref_type != 'tag'
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
Expand Down Expand Up @@ -60,6 +61,7 @@ jobs:
test:
name: Run unit tests
runs-on: ${{ matrix.os }}
if: github.ref_type != 'tag'
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
Expand Down

0 comments on commit 3c2eeec

Please sign in to comment.