Skip to content

Commit

Permalink
adds windows build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KamalGalrani committed Jul 4, 2024
1 parent 18b0a7c commit 9206bec
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build on Windows

on:
workflow_dispatch:


jobs:
build:
runs-on: windows
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- uses: actions/setup-go@v5
with:
go-version: '1.17.13'
- run: |
npm install -g yarn
yarn install
yarn build
go run build.go setup
go run build.go build
- name: build
uses: actions/upload-artifact@v4
with:
name: distributable
path: |
conf/
bin/
public/
tools/
if-no-files-found: error
retention-days: 7
overwrite: true

0 comments on commit 9206bec

Please sign in to comment.