Skip to content

Commit

Permalink
Use macos-13
Browse files Browse the repository at this point in the history
  • Loading branch information
leonp-s committed Jan 6, 2025
1 parent b6124b3 commit 7021c42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/actions/package_macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ runs:
shell: bash
run: |
mkdir builds/signed
productsign -s "${{ inputs.DEVELOPER_ID_INSTALLER }}" builds/Zones.pkg builds/signed/Zones.pkg
productsign -s "${{ inputs.DEVELOPER_ID_INSTALLER }}" builds/Zones.pkg builds/signed/${{ inputs.PACKAGE_NAME }}
- name: Notarize and Staple
shell: bash
run: |
xcrun notarytool submit builds/signed/Zones.pkg --apple-id ${{ inputs.NOTARIZATION_USERNAME }} --password ${{ inputs.NOTARIZATION_PASSWORD }} --team-id ${{ inputs.TEAM_ID }} --wait
xcrun stapler staple builds/signed/Zones.pkg
xcrun notarytool submit builds/signed/${{ inputs.PACKAGE_NAME }} --apple-id ${{ inputs.NOTARIZATION_USERNAME }} --password ${{ inputs.NOTARIZATION_PASSWORD }} --team-id ${{ inputs.TEAM_ID }} --wait
xcrun stapler staple builds/signed/${{ inputs.PACKAGE_NAME }}
- name: Upload PKG (macOS)
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.PACKAGE_NAME }}
path: builds/signed/Zones.pkg
path: builds/signed/${{ inputs.PACKAGE_NAME }}
2 changes: 1 addition & 1 deletion .github/workflows/build_and_release_x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
include:
- name: macOS
os: macos-12
os: macos-13
pluginval-binary: pluginval.app/Contents/MacOS/pluginval

steps:
Expand Down

0 comments on commit 7021c42

Please sign in to comment.