Skip to content

Commit 3424bbb

Browse files
Merge pull request #10 from wisedev-code/feat/docs-with-cleanup-and-improvements
feat: fix pipe
2 parents c0e9903 + 8ffe9b7 commit 3424bbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# Create a tag using today's date
4646
TAG_NAME="v$(date +'%Y.%m.%d')"
4747
# 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))
48+
NUPKG_FILE=$(basename $(find ./artifacts -name "*.nupkg" | head -n1))
4949
RELEASE_NAME="${NUPKG_FILE%.*}"
5050
# Get the newest markdown file from the Releases folder and read its content as release notes
5151
NEWEST_NOTES=$(ls -t Releases/*.md | head -n1)

0 commit comments

Comments
 (0)