From b3ec1f18ef84b50efbd48ef26159f5004a4b262e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=B4=8D=E1=B4=8F=E1=B4=8F=C9=B4D4=CA=80=E1=B4=8B?= Date: Fri, 10 Jul 2020 10:53:49 +0800 Subject: [PATCH] support go 1.11, 1.12 and windows 386 release --- .github/workflows/cl.yml | 2 +- .github/workflows/release.yml | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cl.yml b/.github/workflows/cl.yml index d1a1c2f..03e2469 100644 --- a/.github/workflows/cl.yml +++ b/.github/workflows/cl.yml @@ -7,7 +7,7 @@ jobs: runs-on: macos-latest strategy: matrix: - goVer: [1.13, 1.14] + goVer: [1.11, 1.12, 1.13, 1.14] steps: - name: Set up Go ${{ matrix.goVer }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b273c6..484318d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,6 @@ jobs: # Don't build windows-32bit due to missing MinGW dependencies # Don't build osx-32bit due to eventual drop in Go support exclude: - - os: windows-latest - arch: '386' - os: macos-latest arch: '386' steps: @@ -37,8 +35,8 @@ jobs: go-version: 1.14 # - if: matrix.os == 'ubuntu-latest' # run: sudo apt-get update && sudo apt-get install -y gcc-multilib - # - if: matrix.arch == '386' - # run: echo "::set-env name=RELEASE::gophish-${{ github.event.release.tag_name }}-${{ matrix.releaseos}}-32bit" + - if: matrix.arch == '386' + run: echo "::set-env name=RELEASE::hack-browser-data-${{ github.event.release.tag_name }}-${{ matrix.releaseos}}-32bit" - if: matrix.arch == 'amd64' run: echo "::set-env name=RELEASE::hack-browser-data-${{ github.event.release.tag_name}}-${{ matrix.releaseos}}-64bit" - uses: actions/checkout@v2