Skip to content

Commit

Permalink
Changed go version (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
faziletozer authored Mar 1, 2021
1 parent c9dbecd commit f3aaabc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
go-version: 1.15.7
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
run: |
INTEGRATION_PATH=oec-linux/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}
echo ${INTEGRATION_PATH}
GO111MODULE=auto go get -u github.com/alexcesaro/log && \
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
- name: Compressing Linux Package
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
go-version: 1.15.7
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run: |
INTEGRATION_PATH=oec-rpm/oec-scripts/opsgenie-${INTEGRATION_NAME}
echo ${INTEGRATION_PATH}
GO111MODULE=auto go get -u github.com/alexcesaro/log && \
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
- name: Create RPM Package
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
go-version: 1.15.7
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
run: |
INTEGRATION_PATH=oec-deb/home/opsgenie/oec/opsgenie-${{ env.INTEGRATION_NAME }}
echo ${INTEGRATION_PATH}
GO111MODULE=auto go get -u github.com/alexcesaro/log && \
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
- name: Create Deb Package
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
go-version: 1.15.7
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
run: |
INTEGRATION_PATH=oec-win32/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}
echo ${INTEGRATION_PATH}
GO111MODULE=auto go get -u github.com/alexcesaro/log && \
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GOOS=windows GOARCH=386 go build -o send2opsgenie32.exe send2opsgenie.go
- name: Compressing Win32 Package
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
go-version: 1.15.7
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down Expand Up @@ -377,7 +377,7 @@ jobs:
run: |
INTEGRATION_PATH=oec-win64/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}
echo ${INTEGRATION_PATH}
GO111MODULE=auto go get -u github.com/alexcesaro/log && \
go get -u github.com/alexcesaro/log && \
cd ${INTEGRATION_PATH} && \
GOOS=windows GOARCH=amd64 go build -o send2opsgenie32.exe send2opsgenie.go
- name: Compressing Win 64 Package
Expand Down

0 comments on commit f3aaabc

Please sign in to comment.