Merge pull request #331 from Mr-Auto/orbs-hack #859
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Whip Build | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- uses: llvm/actions/install-ninja@main | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
submodules: true | |
- name: Get tags for release notes | |
shell: bash | |
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DBUILD_INFO_DUMP=OFF -DBUILD_SPEL2_DLL=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -GNinja | |
cmake --build . --config Release | |
- name: Create artifacts | |
run: | | |
mkdir Overlunky | |
move build\bin\Overlunky.dll Overlunky\Overlunky.dll | |
move build\bin\Overlunky.exe Overlunky\Overlunky.exe | |
move README.md Overlunky\README.txt | |
move examples Overlunky\Scripts | |
7z a Overlunky_WHIP.zip Overlunky\ | |
- name: Create WHIP release | |
uses: marvinpinto/[email protected] | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "whip" | |
prerelease: false | |
title: "WHIP Build" | |
files: | | |
Overlunky_WHIP.zip | |
Overlunky/Overlunky.exe | |
Overlunky/Overlunky.dll |