Skip to content

Run Makefile

Run Makefile #596

Workflow file for this run

name: Run Makefile
on:
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies (packages)
run: |
curl -LO https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus7/ldid_macosx_x86_64
sudo install -m755 ldid_macosx_x86_64 /usr/local/bin/ldid
brew install 7zip
- name: Compile
run: IOS=1 FINAL=1 make
- name: Upload artifact
uses: wangyucode/[email protected]
with:
host: ${{ secrets.STATIC_FTP_HOST }}
port: ${{ secrets.STATIC_FTP_PORT }}
username: static
password: ${{ secrets.STATIC_FTP_PASS }}
forceUpload: true
dryRun: false
localDir: 'packages/'
remoteDir: '/artifacts/loader/universal_lite'