🐛 fix: many many many fixes #52
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-actions | |
on: push | |
jobs: | |
build: | |
name: Deploy to Windows | |
runs-on: windows-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@master | |
with: | |
node-version: 16 | |
- name: Update npm | |
run: npm install --global npm@latest | |
- name: patch node gyp on windows to support Visual Studio 2019 | |
shell: powershell | |
run: | | |
npm install --global node-gyp@latest | |
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"} | |
- name: Install yarn | |
run: npm install --global yarn | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn make --platform win32 | |
- name: Generate Changelog | |
run: echo "# Good things have arrived" > ${{ github.workspace }}-CHANGELOG.txt | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
body_path: ${{ github.workspace }}-CHANGELOG.txt | |
release_name: Release ${{ github.ref }} | |
files: | | |
out/make/squirrel.windows/x64/anime-app.exe |