-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2364947
commit b912896
Showing
1 changed file
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,22 +60,29 @@ jobs: | |
|
||
- name: Build Package | ||
if: steps.fetch.outputs.BACKUP_FOLDER != '' | ||
run: python3 metallib.py --build-pkg ${{ steps.fetch.outputs.BACKUP_FOLDER }} --pkg-signing-identity $ORG_MAC_DEVELOPER_ID_INSTALLER_IDENTITY --notarization-team-id $ORG_MAC_NOTARIZATION_TEAM_ID --notarization-apple-id $ORG_MAC_NOTARIZATION_APPLE_ID --notarization-password $ORG_MAC_NOTARIZATION_PASSWORD | ||
run: python3 metallib.py --build-pkg ${{ steps.fetch.outputs.BACKUP_FOLDER }} --pkg-signing-identity "${{env.ORG_MAC_DEVELOPER_ID_INSTALLER_IDENTITY}}" --notarization-team-id "${{env.ORG_MAC_NOTARIZATION_TEAM_ID}}" --notarization-apple-id "${{env.ORG_MAC_NOTARIZATION_APPLE_ID}}" --notarization-password "${{env.ORG_MAC_NOTARIZATION_PASSWORD}}" | ||
|
||
- name: Upload metal libraries to Artifactions | ||
- name: Upload metal libraries to Artifacts | ||
if: steps.fetch.outputs.BACKUP_FOLDER != '' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MetallibSupportPkg.pkg | ||
path: ./MetallibSupportPkg-*.pkg | ||
|
||
- name: Upload sys_patch_dict.py to Artifactions | ||
- name: Upload sys_patch_dict.py to Artifacts | ||
if: steps.fetch.outputs.BACKUP_FOLDER != '' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: sys_patch_dict.py | ||
path: sys_patch_dict.py | ||
|
||
- name: Upload manifest to Artifacts | ||
if: steps.fetch.outputs.BACKUP_FOLDER != '' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: manifest.json | ||
path: deploy/manifest.json | ||
|
||
- name: Sync GitHub Pages | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && steps.fetch.outputs.BACKUP_FOLDER != '' }} | ||
uses: JamesIves/[email protected] | ||
|