Skip to content

Commit

Permalink
#11 Replacing slashes with dashes with the tr command
Browse files Browse the repository at this point in the history
  • Loading branch information
iBrotNano committed Mar 1, 2023
1 parent bf9158e commit 4722783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Generate package version
run: echo "PACKAGE_VERSION=$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH-$VERSION_SUFFIX-$VERSION_BUILD" >> $GITHUB_ENV
run: echo "PACKAGE_VERSION=$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH-$VERSION_SUFFIX-$VERSION_BUILD" | tr / - >> $GITHUB_ENV
- name: Generate assembly version
run: echo "ASSEMBLY_VERSION=$VERSION_MAJOR.0.0.0" >> $GITHUB_ENV
- name: Generate file version
Expand Down

0 comments on commit 4722783

Please sign in to comment.