Skip to content

[Web] Pad NPOT theme textures to POT. #1340

[Web] Pad NPOT theme textures to POT.

[Web] Pad NPOT theme textures to POT. #1340

Workflow file for this run

name: Build iOS
on: [push,pull_request]
jobs:
build-and-deploy:
runs-on: macos-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Configure & Build 🔧
run: |
mkdir build
cd build
cmake -GXcode -DSOKOL_BACKEND=SOKOL_METAL -DCMAKE_SYSTEM_NAME=iOS ../
cmake --build . --config Release
mkdir Payload
cp -R bin/Release/SkyEmu.app Payload/SkyEmu.app
zip -r SkyEmu.ipa Payload
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
with:
name: iOSRelease
path: build/SkyEmu.ipa
#uses: softprops/action-gh-release@v0.1.5
#with:
# # Note-worthy description of changes in release
# # body: # optional
# # Path to load note-worthy description of changes in release from
# # body_path: # optional
# # Gives the release a custom name. Defaults to tag name
# name: LinuxRelease
# # Identify the release as a prerelease. Defaults to false
# prerelease: True
# # Newline-delimited list of path globs for asset files to upload
# files: build/bin/*