Skip to content

Commit cd1bfd0

Browse files
committed
Update Release PK3 Build Script
1 parent dd877ac commit cd1bfd0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,15 @@ jobs:
3434
# Build & Publish PK3
3535
- uses: actions/checkout@v4
3636
- id: build-suffix
37+
env:
38+
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
3739
shell: bash
38-
run: echo "SUFFIX=${{ github.ref_name }}" >> "$GITHUB_OUTPUT"
40+
run: echo "SUFFIX=${{ env.RELEASE_VERSION }}" >> "$GITHUB_OUTPUT"
3941
- uses: ./.github/workflows/build-pk3
4042
env:
4143
SUFFIX: ${{ steps.build-suffix.outputs.SUFFIX }}
44+
45+
# Create Release
4246
- uses: softprops/action-gh-release@v0.1.15
4347
env:
4448
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
@@ -50,5 +54,4 @@ jobs:
5054
draft: false
5155
prerelease: false
5256
generate_release_notes: true
53-
discussion_category_name: 'Releases'
5457
files: ./*.pk3

0 commit comments

Comments
 (0)