Skip to content

Commit

Permalink
Fix workflow not running for beta/rc tags
Browse files Browse the repository at this point in the history
Fixes #20
  • Loading branch information
DerpyNewbie committed Nov 24, 2024
1 parent 237a93f commit e9541da
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ on:
workflow_dispatch:
push:
branches:
- master
- 'master'
- '\d+.\d+.\d+'
# basically matches semver
tags:
- '\d+.\d+.\d+'
- '\d+.\d+.\d+-beta-\d+'
- '\d+.\d+.\d+-beta.\d+'
- '\d+.\d+.\d+-rc.\d+'

env:
packageName: "dev.derpynewbie.common"
Expand Down

0 comments on commit e9541da

Please sign in to comment.