Skip to content

Commit

Permalink
Fix output name (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimdalen authored Dec 10, 2023
1 parent d54a1a7 commit 2ced46a
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 @@ -45,7 +45,7 @@ jobs:
- id: get-version
run: |
parsedVersion=$(echo ${{ github.ref }} | cut -dv -f2)
echo "name=$parsedVersion" >> "$GITHUB_OUTPUT"
echo "version=$parsedVersion" >> "$GITHUB_OUTPUT"
- name: Publish BicepDocs
run: dotnet publish --configuration release --self-contained true -p:AssemblyVersion=${{ steps.get-version.outputs.version }} -p:Version=${{ steps.get-version.outputs.version }} -p:PublishTrimmed=true -p:PublishSingleFile=true -p:TrimmerDefaultAction=copyused -p:SuppressTrimAnalysisWarnings=true -r ${{ matrix.rid }} ./src/BicepDocs.Cli/BicepDocs.Cli.csproj
- name: Rename binary
Expand Down

0 comments on commit 2ced46a

Please sign in to comment.