We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a128a5c commit 92b1db9Copy full SHA for 92b1db9
.github/workflows/build-release.yml
@@ -88,13 +88,19 @@ jobs:
88
permissions:
89
contents: write
90
steps:
91
+ - name: Read Gradle Properties
92
+ uses: BrycensRanch/read-properties-action@v1.0.4
93
+ id: all
94
+ with:
95
+ file: gradle.properties
96
+ all: true
97
+
98
- name: Create release
99
env:
100
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101
tag: ${{ steps.all.outputs.modVersion }}
102
run: |
103
gh release create "${{ steps.all.outputs.modVersion }}" \
- --repo="$GITHUB_REPOSITORY" \
104
--title="Lambda ${{ steps.all.outputs.modVersion }} ${{ github.event.inputs.title }}" \
105
--notes="${{ github.event.inputs.description }}" \
106
$( [ "${{ github.event.inputs.prerelease }}" = "true" ] && echo "--prerelease" )
0 commit comments