Skip to content

Commit

Permalink
Disabling windows build in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Nov 9, 2023
1 parent e74b93e commit f402c68
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,34 +98,34 @@ jobs:
name: dist-darwin-universal
path: ./$APP*.tar.bz2

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 ${{ github.ref_name }}
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: dist-windows
path: build/windows/*/*/$APP*.zip
# 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 ${{ github.ref_name }}
# - name: Archive artifacts
# uses: actions/upload-artifact@v3
# with:
# name: dist-windows
# path: build/windows/*/*/$APP*.zip

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

0 comments on commit f402c68

Please sign in to comment.