Skip to content

Commit

Permalink
Remove GO111MODULE flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Cem Küçük committed Mar 1, 2021
1 parent 59b98ea commit 090b790
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
echo ${INTEGRATION_PATH}
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GO111MODULE=auto GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
- name: Compressing Linux Package
run: |
cd .release/oec-linux/
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
echo ${INTEGRATION_PATH}
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GO111MODULE=auto GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
- name: Create RPM Package
working-directory: .release/oec-rpm
run: |
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
echo ${INTEGRATION_PATH}
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GO111MODULE=auto GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
- name: Create Deb Package
working-directory: .release/
run: |
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
echo ${INTEGRATION_PATH}
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GO111MODULE=auto GOOS=windows GOARCH=386 go build -o send2opsgenie32.exe send2opsgenie.go
GOOS=windows GOARCH=386 go build -o send2opsgenie32.exe send2opsgenie.go
- name: Compressing Win32 Package
run: |
cd .release/oec-win32/
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
echo ${INTEGRATION_PATH}
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GO111MODULE=auto GOOS=windows GOARCH=amd64 go build -o send2opsgenie32.exe send2opsgenie.go
GOOS=windows GOARCH=amd64 go build -o send2opsgenie32.exe send2opsgenie.go
- name: Compressing Win 64 Package
run: |
cd .release/oec-win64/
Expand Down

0 comments on commit 090b790

Please sign in to comment.