Skip to content

Commit

Permalink
macos home
Browse files Browse the repository at this point in the history
  • Loading branch information
erikrose100 committed May 9, 2024
1 parent 346e4da commit e69e578
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
dotnet-version: ${{ env.dotnet-version }}
- name: Install project dependencies
run: dotnet restore
- run: sudo mkdir /app
- run: sudo mkdir -p ~/app
- name: Compile exectuable
run: sudo dotnet publish -r osx-x64 -c Release -o /app/ CloseAsteroids.csproj
run: sudo dotnet publish -r osx-x64 -c Release -o ~/app/ CloseAsteroids.csproj
- name: Zip executable
shell: Powershell
run: Compress-Archive -Path app/* -Destination macos-x64.zip
run: Compress-Archive -Path ~/app/* -Destination macos-x64.zip
- name: Upload macos zip artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit e69e578

Please sign in to comment.