Skip to content

Commit 3ff6a52

Browse files
committed
Asset file name
1 parent dae3df0 commit 3ff6a52

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,8 @@ jobs:
5959
echo "PkgVersion=$xml_value" >> $GITHUB_OUTPUT
6060
- name: Find assets
6161
id: assets
62-
run: |
63-
echo "ASSETS=$(find . -name '*.md' -print | tr '\n' ' ')" >> $GITHUB_OUTPUT
64-
for file in $ASSETS; do
65-
echo "Processing $file"
66-
done
62+
run: | # echo "ASSETS=$(find . -name '*.md' -printf '%f\n' | tr '\n' ' ')" >> $GITHUB_OUTPUT
63+
echo "ASSETS=$(find . -name '*.md' -printf '%f\n')" >> $GITHUB_OUTPUT
6764
- name: Use files in another step
6865
run: |
6966
echo "Files found: ${{ steps.assets.outputs.ASSETS }}"
@@ -73,7 +70,7 @@ jobs:
7370
PACKAGE_VERSION: ${{ steps.ver.outputs.PkgVersion }}
7471
OCELOT_VERSION: ${{ steps.xml.outputs.OcelotRefVer }}
7572
with:
76-
tag_name: 0.0.3 # Name of a tag. defaults to github.ref_name
73+
tag_name: 0.0.4 # Name of a tag. defaults to github.ref_name
7774
body: |
7875
## Version [${{ env.PACKAGE_VERSION }}](https://www.nuget.org/packages/Ocelot.Testing/${{ env.PACKAGE_VERSION }})
7976
- Ocelot dependency package: v[${{ env.OCELOT_VERSION }}](https://www.nuget.org/packages/Ocelot/${{ env.OCELOT_VERSION }})

0 commit comments

Comments
 (0)