Skip to content

Commit

Permalink
ci(build): prevent macOS 13 from failing to upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
BrycensRanch committed Dec 22, 2024
1 parent 9dbbe0e commit 618203a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
- name: Publish
run: dotnet publish "${{ env.SOLUTION_FILE_PATH }}" -c "${{ matrix.configuration }}" -p:Platform="${{ matrix.platform }}" --no-restore

- name: Upload artifact (Debug)
- name: Upload Publish artifact (Debug)
if: matrix.configuration == 'Debug'
uses: actions/upload-artifact@v4
with:
name: ${{matrix.configuration}}-${{ runner.os }}
name: ${{ matrix.configuration }}-${{ runner.os }}${{ runner.os == 'macos-13' && format('-{0}', matrix.os) || '' }}
path: "**/publish"

0 comments on commit 618203a

Please sign in to comment.