upload DMG #16
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: upload DMG | |
on: | |
workflow_dispatch: | |
inputs: | |
pharo-launcher-version: | |
type: string | |
description: 'The Pharo Launcher version number' | |
arm-signed-archive-url: | |
type: string | |
description: 'The Pharo Launcher archive URL containing the signed App for ARM architecture' | |
signed-archive-url: | |
type: string | |
description: 'The Pharo Launcher archive URL containing the signed App for Intel architecture' | |
jobs: | |
upload-dmg: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
arch: [ arm64 ] # 64, arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build ${{ matrix.arch }} mac os package | |
run: | | |
APP_URL=$( [ "${{ matrix.arch }}" == "arm64" ] && echo "${{ github.event.inputs.arm-signed-archive-url }}" || echo "${{ github.event.inputs.signed-archive-url }}" ) | |
curl -O $APP_URL | |
tar -xf *.tgz | |
# move PharoLauncher.app to the current directory | |
find . -name PharoLauncher.app -print0 | xargs -0 -I{} mv {} . | |
chmod +x PharoLauncher.app/Contents/MacOS/Pharo PharoLauncher.app/Contents/Resources/pharo-launcher || true | |
mv mac-installer-background.png background.png | |
ARCHITECTURE=${{ matrix.arch }} VERSION=${{ github.event.inputs.pharo-launcher-version }} APP_NAME=PharoLauncher SHOULD_SIGN=false ./mac/build-dmg.sh | |
generated_dmg=$(echo *.dmg) | |
mv "$generated_dmg" "PharoLauncher-${{ github.event.inputs.pharo-launcher-version }}.dmg" | |
generated_dmg=$(echo *.dmg) | |
md5 "$generated_dmg" > "$generated_dmg.md5sum" | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: PharoLauncher-mac-installer-${{ github.event.inputs.pharo-launcher-version }}-${{ matrix.arch == '64' && 'x64' || matrix.arch }} | |
path: PharoLauncher-*.dmg | |
retention-days: 5 | |