Skip to content

Commit

Permalink
even more testing
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioGaming authored Apr 17, 2024
1 parent 46c89d9 commit d3d534e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dev-autopublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ jobs:
- name: Determine version
id: version
run: echo "::set-output name=version::$(dotnet project-file-name ${GITHUB_WORKSPACE}/${{ steps.project_name.outputs.name }}.csproj --version)"
run: |
version=$(dotnet project-file-name ${GITHUB_WORKSPACE}/${{ steps.project_name.outputs.name }}.csproj --version)
version=$(echo "${version}" | tr -d '[:space:]')
echo "::set-output name=version::$version"
- name: Pack
run: |
Expand Down

0 comments on commit d3d534e

Please sign in to comment.