Skip to content

Commit

Permalink
fix build - removes v from release name
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Staffa committed Jan 19, 2024
1 parent b5b457f commit 1dea354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: dotnet test src/PostalCodes.UnitTests/PostalCodes.UnitTests.csproj
- name: Extract Version from Release Tag
id: get_version
run: echo "VERSION=$(echo '${{ github.event.release.tag_name || env.DEFAULT_VERSION }}' | sed -e 's/^v\.//')" >> $GITHUB_ENV
run: echo "VERSION=$(echo '${{ github.event.release.tag_name || env.DEFAULT_VERSION }}' | sed -e 's/^v//')" >> $GITHUB_ENV
- name: Create nuget package
run: dotnet pack . -p:PackageVersion=${{ env.VERSION }} -o out --no-build
- name: Install dotnet-validate
Expand Down

0 comments on commit 1dea354

Please sign in to comment.