We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9404de3 commit 8ffe9b7Copy full SHA for 8ffe9b7
1 file changed
.github/workflows/publish.yml
@@ -45,7 +45,7 @@ jobs:
45
# Create a tag using today's date
46
TAG_NAME="v$(date +'%Y.%m.%d')"
47
# Get the NuGet package file name from the artifacts folder and remove its extension for the release title
48
- NUPKG_FILE=$(basename $(ls ./artifacts/*.nupkg))
+ NUPKG_FILE=$(basename $(find ./artifacts -name "*.nupkg" | head -n1))
49
RELEASE_NAME="${NUPKG_FILE%.*}"
50
# Get the newest markdown file from the Releases folder and read its content as release notes
51
NEWEST_NOTES=$(ls -t Releases/*.md | head -n1)
0 commit comments