Fix two more pipeline typos (#10)

This commit is contained in:
Patrick Stevens
2024-06-17 22:00:16 +01:00
committed by GitHub
parent ffe21beeba
commit a164f3e237
2 changed files with 2 additions and 2 deletions

View File

@@ -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'

View File

@@ -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)