Skip to content

Commit

Permalink
Revert "Update dotnet-desktop.yml"
Browse files Browse the repository at this point in the history
This reverts commit 19ec37a.
  • Loading branch information
FaithBeam committed Oct 27, 2024
1 parent 19ec37a commit 646d293
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,18 @@ jobs:

- name: Tar to Preserve Executable Bit
if: ${{ startsWith(matrix.rid, 'osx') }}
run: tar -cv bin/ | xz -9 > ${{ env.APP_NAME }}.${{ steps.gitversion.outputs.semVer }}+${{ matrix.rid }}.tar.xz
run: tar -cvf ${{ env.APP_NAME }}.${{ steps.gitversion.outputs.semVer }}+${{ matrix.rid }}.tar bin/

- name: Upload build artifacts
if: ${{ startsWith(matrix.rid, 'osx') }}
uses: actions/[email protected]
with:
name: "${{ env.APP_NAME }}.${{ steps.gitversion.outputs.semVer }}+${{ matrix.rid }}"
path: "${{ env.APP_NAME }}.${{ steps.gitversion.outputs.semVer }}+${{ matrix.rid }}.tar.xz"
path: "${{ env.APP_NAME }}.${{ steps.gitversion.outputs.semVer }}+${{ matrix.rid }}.tar"

- name: Upload build artifacts
if: ${{ ! startsWith(matrix.rid, 'osx') }}
uses: actions/[email protected]
with:
name: "${{ env.APP_NAME }}.${{ steps.gitversion.outputs.semVer }}+${{ matrix.rid }}"
path: bin/
compression-level: 9

0 comments on commit 646d293

Please sign in to comment.