Skip to content

Commit 7e0eaef

Browse files
committed
Asset file name
1 parent dae3df0 commit 7e0eaef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,7 @@ jobs:
6161
id: assets
6262
run: |
6363
echo "ASSETS=$(find . -name '*.md' -print | tr '\n' ' ')" >> $GITHUB_OUTPUT
64-
for file in $ASSETS; do
65-
echo "Processing $file"
66-
done
64+
echo "ASSETS=$(find . -name '*.md' -printf '%f\n')"
6765
- name: Use files in another step
6866
run: |
6967
echo "Files found: ${{ steps.assets.outputs.ASSETS }}"
@@ -73,11 +71,13 @@ jobs:
7371
PACKAGE_VERSION: ${{ steps.ver.outputs.PkgVersion }}
7472
OCELOT_VERSION: ${{ steps.xml.outputs.OcelotRefVer }}
7573
with:
76-
tag_name: 0.0.3 # Name of a tag. defaults to github.ref_name
74+
tag_name: 0.0.4 # Name of a tag. defaults to github.ref_name
7775
body: |
7876
## Version [${{ env.PACKAGE_VERSION }}](https://www.nuget.org/packages/Ocelot.Testing/${{ env.PACKAGE_VERSION }})
7977
- Ocelot dependency package: v[${{ env.OCELOT_VERSION }}](https://www.nuget.org/packages/Ocelot/${{ env.OCELOT_VERSION }})
8078
- For Ocelot release: [${{ env.OCELOT_VERSION }}](https://github.com/ThreeMammals/Ocelot/releases/tag/${{ env.OCELOT_VERSION }})
81-
files: ${{ steps.assets.outputs.ASSETS }}
79+
#files: ${{ steps.assets.outputs.ASSETS }}
80+
files: |
81+
*.md
8282
draft: false
8383
prerelease: false

0 commit comments

Comments
 (0)