Skip to content

oops

oops #66

Workflow file for this run

name: Main
on:
push:
branches: [ master, master-dev ]
pull_request:
branches: [ master, master-dev ]
workflow_dispatch:
jobs:
Build:
name: ${{ matrix.name }}
strategy:
matrix:
include:
- name: Windows
os: windows-2022
buildArgs: "windows -D officialBuild"
artifactName: P-Slice.1.0.windows
artifactPath: export\release\windows\bin\*
- name: Linux
os: ubuntu-22.04
buildArgs: "linux -D officialBuild"
artifactName: P-Slice.1.0.linux
artifactPath: export/release/linux/bin/*
- name: macOS x86_64
os: macos-13
buildArgs: "mac -D officialBuild"
artifactName: P-Slice.1.0.macosx64
artifactPath: export/release/macos/bin/*
- name: macOS AArch64
os: macos-15
buildArgs: "mac -D officialBuild"
artifactName: P-Slice.1.0.macosarm64
artifactPath: export/release/macos/bin/*
- name: Android
os: macos-14
buildArgs: "android -D officialBuild"
artifactName: P-Slice.1.0.android
artifactPath: "export/release/android/bin/app/build/outputs/apk/release/*.apk"
- name: iOS
os: macos-15
buildArgs: "ios -nosign -D officialBuild"
artifactName: P-Slice.1.0.ios
artifactPath: "export/release/ios/build/Release-iphoneos/*.ipa"
uses: ./.github/workflows/build.yml
with:
name: ${{ matrix.name }}
os: ${{ matrix.os }}
buildArgs: ${{ matrix.buildArgs }}
artifactName: ${{ matrix.artifactName }}
artifactPath: ${{ matrix.artifactPath }}