Skip to content

Commit c1d3237

Browse files
committed
Fix workflow
1 parent 029150a commit c1d3237

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/RedistTool.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Build UnturnedRedistUpdateTool
3939
uses: ./.github/actions/project-build
40-
id: auto-installer-build
40+
id: redist-update-tool-build
4141
with:
4242
project_path: src/UnturnedRedistUpdateTool
4343
github_token: ${{ secrets.PAT }}
@@ -52,17 +52,17 @@ jobs:
5252
uses: actions/upload-artifact@v4
5353
with:
5454
name: UnturnedRedistUpdateTool.zip
55-
path: "./src/UnturnedRedistUpdateTool/bin/Release/net9.0/linux-x64/UnturnedRedistUpdateTool/UnturnedRedistUpdateTool.zip"
55+
path: "./src/UnturnedRedistUpdateTool/bin/Release/net9.0/linux-x64/UnturnedRedistUpdateTool.zip"
5656
if-no-files-found: error
5757

5858
- name: Create Release
5959
if: github.event_name == 'create' && github.event.ref_type == 'tag'
6060
uses: ncipollo/release-action@v1
6161
with:
62-
name: UnturnedRedistUpdateTool Release v${{ steps.auto-installer-build.outputs.version }}
63-
tag: ${{ steps.auto-installer-build.outputs.version }}
64-
artifacts: "./src/UnturnedRedistUpdateTool/bin/Release/net9.0/linux-x64/UnturnedRedistUpdateTool/UnturnedRedistUpdateTool.zip"
62+
name: UnturnedRedistUpdateTool Release v${{ steps.redist-update-tool-build.outputs.version }}
63+
tag: ${{ steps.redist-update-tool-build.outputs.version }}
64+
artifacts: "./src/UnturnedRedistUpdateTool/bin/Release/net9.0/linux-x64/UnturnedRedistUpdateTool.zip"
6565
token: ${{ secrets.PAT }}
66-
prerelease: ${{ steps.auto-installer-build.outputs.is_prerelease }}
66+
prerelease: ${{ steps.redist-update-tool-build.outputs.is_prerelease }}
6767
allowUpdates: true
6868
draft: true

0 commit comments

Comments
 (0)