Skip to content

Commit

Permalink
check for tag instead of release
Browse files Browse the repository at this point in the history
  • Loading branch information
wardz committed Jan 8, 2021
1 parent f253b2b commit 7d305eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
tags:
- "v*.*.*"
- "v*"
pull_request:
branches:
- master
Expand All @@ -26,7 +26,7 @@ jobs:

- name: Create Classic Package
uses: BigWigsMods/packager@master
if: ${{ success() && github.event_name != 'pull_request' && contains(github.ref, 'release') }}
if: ${{ success() && github.event_name != 'pull_request' && contains(github.ref, 'tags/v') }}
with:
args: -g classic
env:
Expand Down

0 comments on commit 7d305eb

Please sign in to comment.