Skip to content

Commit f9d3d06

Browse files
authored
Update release condition in workflow
This allows us to test things with a tag starting with `99.` and not trigger an actual release.
1 parent 065aa50 commit f9d3d06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# Optional but recommended to use a specific environment
1414
environment: release
1515
# Prevent releases from forked repositories
16-
if: github.repository_owner == 'OpenVoxProject'
16+
if: github.repository_owner == 'OpenVoxProject' && !startsWith(github.ref_name, '99.')
1717

1818
permissions:
1919
contents: write

0 commit comments

Comments
 (0)