Fix github action #13
Workflow file for this run
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: CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
- github-actions | |
workflow_dispatch: | |
jobs: | |
checkout_and_build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- name: mac | |
label: macOS ARM | |
os: macos-14 | |
# - build: win32 | |
# os: windows-latest | |
# - build: win64 | |
# os: windows-latest | |
# - build: linux | |
# os: ubuntu-latest | |
# container: | |
# image: cimg/node:${{ matrix.node_version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "21.6.2" | |
- name: Setup codesign certificate | |
if: (matrix.name == 'mac') || (matrix.name == 'mac-intel') | |
env: | |
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }} | |
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }} | |
run: | | |
echo $MACOS_CERTIFICATE | base64 -i - --decode > certificate.p12 | |
security create-keychain -p "$KEYCHAIN_PWD" build.keychain | |
security default-keychain -s build.keychain | |
security unlock-keychain -p "$KEYCHAIN_PWD" build.keychain | |
security import certificate.p12 -k build.keychain -P "$MACOS_CERTIFICATE_PWD" -T /usr/bin/codesign | |
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$KEYCHAIN_PWD" build.keychain | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
./node_modules | |
./* | |
key: ${{ runner.os }}-build-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-build- | |
- name: Install Dependencies | |
run: | | |
yarn --ignore-engines | |
- name: Build Mac | |
if: matrix.name == 'mac' | |
env: | |
APPLE_ID: ${{ secrets.MAC_NOTARIZE_ID }} | |
APPLE_ID_PASSWORD: ${{ secrets.MAC_NOTARIZE_PWD }} | |
APPLE_TEAM_ID: ${{ secrets.MAC_NOTARIZE_TEAM }} | |
run: | | |
export APPLE_ID=${APPLE_ID} | |
export APPLE_ID_PASSWORD=${APPLE_ID_PASSWORD} | |
export APPLE_TEAM_ID=${APPLE_TEAM_ID} | |
yarn make:mac | |
mkdir -p ./out/keep | |
mv ./out/make/zip/darwin/arm64/*.zip ./out/keep/gb-studio-${GITHUB_REF##*/}-darwin_arm64.zip | |
# - name: Build Mac Intel | |
# if: matrix.name == 'mac-intel' | |
# run: | | |
# yarn make:mac-intel | |
# - name: Build | |
# run: | | |
# if [ "${{ matrix.name }}" = "mac" ]; then | |
# yarn make:mac | |
# elif [ "${{ matrix.name }}" = "mac-intel" ]; then | |
# yarn make:mac-intel | |
# elif [ "${{ matrix.name }}" = "win32" ]; then | |
# sudo dpkg --add-architecture i386 | |
# sudo apt-get -y update | |
# sudo apt-get -y install wine wine32 mono-devel | |
# yarn make:win32 | |
# elif [ "${{ matrix.name }}" = "win64" ]; then | |
# sudo dpkg --add-architecture i386 | |
# sudo apt-get -y update | |
# sudo apt-get -y install wine wine32 wine64 mono-devel | |
# yarn make:win | |
# elif [ "${{ matrix.name }}" = "linux" ]; then | |
# sudo apt-get -y update | |
# sudo apt-get -y install fakeroot rpm squashfs-tools | |
# yarn make:linux | |
# fi | |
- name: Test | |
if: matrix.name == 'mac' | |
run: | | |
yarn test | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.label }} build | |
path: | | |
./out/keep/** |