i am going to kill somebody with violence #4
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: Build for Windows | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Nim | |
uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: '1.6.14' # default is 'stable' | |
repo-token: ${{ secrets.LINK_TOKEN }} | |
- name: Build with Nimble | |
run: nimble build -d:release --gc:arc --opt:size --app:gui -Y | |
- name: Publish Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: windows installer | |
path: neptune_installer.exe |