Skip to content

Update main.yml

Update main.yml #6

Workflow file for this run

name: CMake
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: ilammy/[email protected]
with:
arch: x86
- name: Cache bin
id: cache-bin
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin
- name: Create bin folder
if: steps.cache-bin.outputs.cache-hit != 'true'
run: |
mkdir bin
cd bin
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release ../
mkdir output_SA
- name: Compile
run: |
cd bin
ninja
cp TrilogyChaosMod.SA.asi output_SA/TrilogyChaosMod.SA.asi
- name: Upload SA
uses: actions/upload-artifact@v1
with:
name: "TrilogyChaosMod.SA"
path: bin/output_SA
- name: Zip
- uses: vimtor/[email protected]
with:
files: bin/output_SA resources/
dest: SA-CHAOS.zip
- name: Upload Release
uses: ncipollo/[email protected]
with:
artifacts: "SA-CHAOS.zip"
token: ${{ secrets.GITHUB_TOKEN }}