Skip to content

Commit

Permalink
Fix missing artifact download name change
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Jun 25, 2024
1 parent 06ef7c1 commit 8330880
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ defaults:
shell: pwsh

jobs:
build:
Build:
uses: ./.github/workflows/build.yml

release:
if: startsWith(github.ref, 'refs/tags/')
Release:
#if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: Download NuGet Packages Artifact
uses: actions/download-artifact@v4
with:
name: nuget
name: NuGet Packages
path: ${{ env.NuGetDirectory }}

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

publish_github:
if: startsWith(github.ref, 'refs/tags/')
Publish-GitHub:
#if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: [ build ]
steps:
Expand Down

0 comments on commit 8330880

Please sign in to comment.