File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments