We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0715213 commit d640350Copy full SHA for d640350
1 file changed
.github/workflows/dev-autopublish.yml
@@ -26,11 +26,11 @@ jobs:
26
27
- name: Determine version
28
id: version
29
- run: echo "::set-output name=version::0.$((${GITHUB_RUN_NUMBER} / 100)).$((${GITHUB_RUN_NUMBER} % 100))"
+ run: echo "::set-output name=version::0.$((${GITHUB_RUN_NUMBER} / 10)).$((${GITHUB_RUN_NUMBER} % 10))"
30
31
- name: Get Project Version
32
id: base_version
33
- run: version=$(grep '<Version>' < .csproj | sed 's/.*<Version>\(.*\)<\/Version>/\1/')
+ run: version=$(grep '<Version>' < *.csproj | sed 's/.*<Version>\(.*\)<\/Version>/\1/')
34
echo "::set-output name=version::$version"
35
36
- name: Pack
0 commit comments