Skip to content

Commit

Permalink
Merge pull request #18 from PostHog/haacked/fix-release-step
Browse files Browse the repository at this point in the history
Wrestling with GitHub Actions. I will win!
  • Loading branch information
haacked authored Jan 17, 2025
2 parents 909fa80 + 05d5bb1 commit 29fca26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: nuget
path: ${{ env.PackageDirectory }}
path: .

- name: Setup .NET Core
uses: actions/setup-dotnet@v4
Expand All @@ -118,5 +118,5 @@ jobs:
# Use --skip-duplicate to prevent errors if a package with the same version already exists.
# If you retry a failed workflow, already published packages will be skipped without error.
- name: Publish NuGet package
run: bin/publish ${{ env.PackageDirectory }} ${{ secrets.NUGET_API_KEY }}
run: bin/publish . ${{ secrets.NUGET_API_KEY }}
shell: bash

0 comments on commit 29fca26

Please sign in to comment.