Skip to content

Commit

Permalink
Fix two more pipeline typos (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Smaug123 authored Jun 17, 2024
1 parent ffe21be commit a164f3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:
- name: Publish to NuGet
id: publish-success
env:
NUGET_API_KEY: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: 'nix develop --command bash ./.github/workflows/nuget-push.sh "packed/WoofWare.DotnetRuntimeLocator.*.nupkg"'
- name: Wait for availability
if: steps.publish-success.outputs.result == 'published'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nuget-push.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

SOURCE_NUPKG=$(find . type f -name '*.nupkg')
SOURCE_NUPKG=$(find . -type f -name '*.nupkg')

PACKAGE_VERSION=$(basename "$SOURCE_NUPKG" | rev | cut -d '.' -f 2-4 | rev)

Expand Down

0 comments on commit a164f3e

Please sign in to comment.