Skip to content

cmake2

cmake2 #6

Workflow file for this run

name: Build and Package iOS App
on:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Build and Package
run: |
mkdir build
cd build
cmake ..
cmake --build . --config Release
# Package the executable into an IPA file
# Replace the following command with your actual packaging command
echo "Package the executable into an IPA file"
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: kiriii2
path: kiriii2.ipa