Skip to content

Commit 8330880

Browse files
committed
Fix missing artifact download name change
1 parent 06ef7c1 commit 8330880

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ defaults:
2222
shell: pwsh
2323

2424
jobs:
25-
build:
25+
Build:
2626
uses: ./.github/workflows/build.yml
2727

28-
release:
29-
if: startsWith(github.ref, 'refs/tags/')
28+
Release:
29+
#if: startsWith(github.ref, 'refs/tags/')
3030
runs-on: ubuntu-latest
3131
needs: [ build ]
3232
steps:
3333
- name: Download NuGet Packages Artifact
3434
uses: actions/download-artifact@v4
3535
with:
36-
name: nuget
36+
name: NuGet Packages
3737
path: ${{ env.NuGetDirectory }}
3838

3939
- name: Build Changelog
@@ -51,8 +51,8 @@ jobs:
5151
fail_on_asset_upload_issue: true
5252
prerelease: ${{ contains(github.ref, '-') }} # simple check for vX.Y.Z-something
5353

54-
publish_github:
55-
if: startsWith(github.ref, 'refs/tags/')
54+
Publish-GitHub:
55+
#if: startsWith(github.ref, 'refs/tags/')
5656
runs-on: ubuntu-latest
5757
needs: [ build ]
5858
steps:

0 commit comments

Comments
 (0)