We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b997c5e commit ebb5a21Copy full SHA for ebb5a21
.github/workflows/build-release.yml
@@ -71,7 +71,7 @@ jobs:
71
uses: actions/upload-artifact@v4.3.6
72
with:
73
name: lambda-${{ steps.all.outputs.modVersion }}.jar
74
- path: build/libs/
+ path: common/build/libs/
75
76
release:
77
name: Release Lambda
@@ -89,7 +89,5 @@ jobs:
89
--repo="$GITHUB_REPOSITORY" \
90
--title="${GITHUB_REPOSITORY##*/} $tag" \
91
--notes="${{ github.event.inputs.description }}" \
92
- if ${{ github.event.inputs.prerelease }}; then
93
- --prerelease
94
- fi
+ $( [ "${{ github.event.inputs.prerelease }}" = "true" ] && echo "--prerelease" )
95
0 commit comments