Browse Source

Update release.yml

- Support beta releases
pull/492/head
Wayne Warthen 1 year ago
committed by GitHub
parent
commit
e4bbeece09
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/release.yml

2
.github/workflows/release.yml

@ -31,6 +31,8 @@ jobs:
echo "Tag: ${{github.ref_name}}" echo "Tag: ${{github.ref_name}}"
if grep -q "dev" <<< "${{github.ref_name}}"; then if grep -q "dev" <<< "${{github.ref_name}}"; then
TITLE="RomWBW Development Snapshot" TITLE="RomWBW Development Snapshot"
elif grep -q "beta" <<< "${{github.ref_name}}"; then
TITLE="RomWBW Beta Release"
elif grep -q "pre" <<< "${{github.ref_name}}"; then elif grep -q "pre" <<< "${{github.ref_name}}"; then
TITLE="RomWBW Prerelease" TITLE="RomWBW Prerelease"
elif grep -q "rc" <<< "${{github.ref_name}}"; then elif grep -q "rc" <<< "${{github.ref_name}}"; then

Loading…
Cancel
Save