Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Update Pet Desummon fix (#314) #199

Update Pet Desummon fix (#314)

Update Pet Desummon fix (#314) #199

Workflow file for this run

on: [push, pull_request]
jobs:
build:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure
run: cmake -B build -A x64
- name: Build
run: cmake --build build --config Release --parallel
- name: Install
run: cmake --install build --prefix out
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: ${{github.event.repository.name}}
path: out/bin/*
- name: Compress artifacts
uses: vimtor/action-zip@v1
with:
files: out/bin/
dest: Kanan.zip
- name: Release
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
prerelease: ${{contains(github.ref, '-pre')}}
files: Kanan.zip