Skip to content

Commit

Permalink
fix: error in publish release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bramanda48 committed Nov 22, 2023
1 parent 5394e14 commit e3ac296
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ jobs:
- name: Publish application
if: matrix.platform == 'windows-2022'
run: |
dotnet publish --self-contained true \
-c Release \
-r win-x64 \
-p:PublishReadyToRun=true \
-p:PublishSingleFile=true \
-p:Version=${{ env.PL_VENDOR_VERSION }} \
-p:AssemblyVersion=${{ env.PL_VENDOR_VERSION }}.${{ github.run_id }}
dotnet publish --self-contained true `
-c Release `
-r win-x64 `
-p:PublishReadyToRun=true `
-p:PublishSingleFile=true `
-p:Version=${{ env.PL_VENDOR_VERSION }} `
-p:AssemblyVersion=${{ env.PL_VENDOR_VERSION }}.${{ github.run_number }}
- name: Publish application
if: matrix.platform == 'ubuntu-latest'
run: |
Expand Down

0 comments on commit e3ac296

Please sign in to comment.