We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1575047 commit 425d14eCopy full SHA for 425d14e
.github/workflows/release.yaml
@@ -8,12 +8,15 @@ jobs:
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
11
- goos: [linux, windows]
+ goos: [windows]
12
goarch: [amd64]
13
steps:
14
- uses: actions/checkout@v2
15
- name: Install dependencies
16
- run: sudo apt-get install build-essential mingw-w64
+ run: sudo apt-get install build-essential
17
+ - name: Install windows dependencies
18
+ if: ${{ matrix.goos == 'windows'}}
19
+ run: sudo apt-get install gcc-mingw-w64
20
- name: Set VERSION env
21
run: echo VERSION=$(basename ${GITHUB_REF}) >> ${GITHUB_ENV}
22
- name: Set GO_ENABLED env
0 commit comments