We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834585d commit a184323Copy full SHA for a184323
.github/workflows/package.yml
@@ -25,9 +25,9 @@ jobs:
25
name: SteamInputPlugin
26
path: target/fab/SteamInputPlugin.zip
27
28
- - run: echo "RELEASE_TAG=$(git tag)" >>$GITHUB_ENV
29
- - uses: ncipollo/release-action@v1
30
- with:
31
- tag: ${{ env.RELEASE_TAG }}
32
- artifacts: target/fab/SteamInputPlugin.zip
33
- bodyFile: "README.md"
+ - name: Create GitHub Release
+ uses: ncipollo/release-action@v1
+ with:
+ tag: ${{ github.ref_name }}
+ artifacts: target/fab/SteamInputPlugin.zip
+ bodyFile: "README.md"
0 commit comments