Skip to content

Commit

Permalink
Enabling windows release
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Nov 20, 2023
1 parent 9af834b commit dbe1999
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,36 +118,36 @@ jobs:
path: build/darwin/**/*
if-no-files-found: error

# build_for_windows:
# name: Build for Windows
# runs-on: windows-latest
# steps:
# - name: Install build dependencies
# run: choco install zip
# - name: Checkout
# uses: actions/checkout@v3
# - name: Setup Go
# uses: actions/setup-go@v4
# with:
# go-version: ${{ env.GO_VERSION }}
# - name: Build amd64
# shell: bash
# run: |
# ./build.sh -v $VER
# - name: Archive artifacts
# uses: actions/upload-artifact@v3
# with:
# name: dist-windows
# path: build/windows/**/*
# if-no-files-found: error
build_for_windows:
name: Build for Windows
runs-on: windows-latest
steps:
- name: Install build dependencies
run: choco install zip
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Build amd64
shell: bash
run: |
./build.sh -v $VER
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: dist-windows
path: build/windows/**/*
if-no-files-found: error

release:
name: Draft Release
needs:
- build_for_linux
- build_for_macos
- build_for_macos_universal
# - build_for_windows
- build_for_windows
runs-on: ubuntu-latest
steps:
- name: Download artifacts
Expand Down

0 comments on commit dbe1999

Please sign in to comment.