Skip to content

Commit

Permalink
Update Release PK3 Build Script
Browse files Browse the repository at this point in the history
  • Loading branch information
UndeadZeratul committed Feb 23, 2024
1 parent 81df431 commit 87903ba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,15 @@ jobs:
# Build & Publish PK3
- uses: actions/checkout@v4
- id: build-suffix
env:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
shell: bash
run: echo "SUFFIX=${{ github.ref_name }}" >> "$GITHUB_OUTPUT"
run: echo "SUFFIX=${{ env.RELEASE_VERSION }}" >> "$GITHUB_OUTPUT"
- uses: ./.github/workflows/build-pk3
env:
SUFFIX: ${{ steps.build-suffix.outputs.SUFFIX }}

# Create Release
- uses: softprops/action-gh-release@v0.1.15
env:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
Expand All @@ -50,5 +54,4 @@ jobs:
draft: false
prerelease: false
generate_release_notes: true
discussion_category_name: 'Releases'
files: ./*.pk3

0 comments on commit 87903ba

Please sign in to comment.