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 27d6e09 commit c1cd3d5Copy full SHA for c1cd3d5
.github/workflows/build.yml
@@ -33,12 +33,16 @@ jobs:
33
goarch: arm
34
goopts: GOARM=7
35
filename: git-backup-linux-armv7
36
+ - goos: windows
37
+ goarch: amd64
38
+ goopts: ""
39
+ filename: git-backup-windows-x64.exe
40
steps:
41
- uses: actions/checkout@v2
42
- uses: actions/setup-go@v2
43
with:
44
go-version: '^1.17.8'
- - run: ${{ matrix.goopts }} go build ./cmd/${{ matrix.filename }}
45
+ - run: ${{ matrix.goopts }} go build -o ${{ matrix.filename }} ./cmd/git-backup
46
env:
47
GOOS: ${{ matrix.goos }}
48
GOARCH: ${{ matrix.goarch }}
0 commit comments