Skip to content

Commit f09a1f3

Browse files
chore: fix build
1 parent 25d6ee8 commit f09a1f3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/ci.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111
env:
1212
GO111MODULE: on
13+
GOPATH: /home/runner/go
1314
steps:
1415
- uses: actions/checkout@v3
1516
- uses: actions/setup-go@v4
1617
with:
1718
go-version: '1.20'
1819
check-latest: true
1920

20-
- name: environment
21-
run: |
22-
env | sort
23-
2421
- name: Setup tools
2522
run: |
2623
make tools

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ version := "v3.0.0"
22

33
commit := $(shell git rev-parse --short HEAD)
44

5-
65
build: dist/sso-auth dist/sso-proxy
76

87
dist/sso-auth:
@@ -16,7 +15,7 @@ dist/sso-proxy:
1615
go build -mod=readonly -o dist/sso-proxy ./cmd/sso-proxy
1716

1817
tools:
19-
go get github.com/rakyll/statik
18+
go install github.com/rakyll/statik
2019

2120
test:
2221
./scripts/test

0 commit comments

Comments
 (0)