Build Munki Release (Manual) #21
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
name: Build Munki (Manual) | |
env: | |
APP_SIGNING_IDENTITY: "Developer ID Application: Mac Admins Open Source (T4SK8ZXCXG)" | |
INSTALLER_SIGNING_IDENTITY: "Developer ID Installer: Mac Admins Open Source (T4SK8ZXCXG)" | |
NOTARY_APP_PASSWORD: ${{ secrets.NOTARY_APP_PASSWORD_MAOS }} | |
REVISION: 8134cedbc2aca8ff4a842fb8cfd656233ee3c650 # hardcoded for now until we figure out how we want to tackle this - v6.3.5 | |
XCODE_PATH: "/Applications/Xcode_14.3.1.app" | |
on: [workflow_dispatch] | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0 | |
with: | |
fetch-depth: 0 | |
path: munki-builds | |
- name: Checkout munki repo | |
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0 | |
with: | |
fetch-depth: 0 | |
path: munki | |
ref: ${{env.REVISION}} | |
repository: munki/munki | |
- name: Install Apple Xcode certificates | |
uses: apple-actions/import-codesign-certs@8f3fb608891dd2244cdab3d69cd68c0d37a7fe93 # v2.0.0 | |
with: | |
keychain-password: ${{ github.run_id }} | |
p12-file-base64: ${{ secrets.APP_CERTIFICATES_P12_MAOS }} | |
p12-password: ${{ secrets.APP_CERTIFICATES_P12_PASSWORD_MAOS }} | |
- name: Install Apple Installer certificates | |
uses: apple-actions/import-codesign-certs@8f3fb608891dd2244cdab3d69cd68c0d37a7fe93 # v2.0.0 | |
with: | |
create-keychain: false # do not create a new keychain for this value | |
keychain-password: ${{ github.run_id }} | |
p12-file-base64: ${{ secrets.PKG_CERTIFICATES_P12_MAOS }} | |
p12-password: ${{ secrets.PKG_CERTIFICATES_P12_PASSWORD_MAOS }} | |
- name: Build munki package | |
run: | | |
cd ./munki | |
./code/tools/make_munki_mpkg.sh -p -S "$APP_SIGNING_IDENTITY" -s "$INSTALLER_SIGNING_IDENTITY" | |
echo "MUNKI_PKG_PATH=$(find . -type f -name "*.pkg")" >> $GITHUB_ENV | |
echo "MUNKI_VERSION=$(find . -type f -name "*.pkg" | sed 's/[^\-]*-//' | sed 's/\.[^.]*$//')" >> $GITHUB_ENV | |
- name: Notarize and staple package | |
id: notarize_and_staple | |
run: | | |
"$XCODE_PATH/Contents/Developer/usr/bin/notarytool" store-credentials --apple-id "[email protected]" --team-id "T4SK8ZXCXG" --password "$NOTARY_APP_PASSWORD" munki | |
"$XCODE_PATH/Contents/Developer/usr/bin/notarytool" submit "./munki/$MUNKI_PKG_PATH" --keychain-profile "munki" --wait | |
"$XCODE_PATH/Contents/Developer/usr/bin/stapler" staple "./munki/$MUNKI_PKG_PATH" | |
- name: Generate changelog | |
if: ${{ false }} # disable job or now | |
id: changelog | |
uses: metcalfc/changelog-generator@afdcb9470aebdb2252c0c95a1c130723c9e21f3a # v4.1 | |
with: | |
myToken: ${{ secrets.GITHUB_TOKEN }} | |
reverse: 'true' | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 | |
with: | |
name: Munki v${{env.MUNKI_VERSION}} Beta | |
tag_name: v${{env.MUNKI_VERSION}} | |
draft: false | |
prerelease: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
This is a signed and notarized build of munki | |
files: ${{github.workspace}}/munki/*.pkg |