Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi committed Nov 6, 2024
1 parent bd21362 commit c81037a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
docker:
name: Docker
name: Docker (${{ matrix.branch }})
timeout-minutes: 20

strategy:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
# TODO https://github.com/AlekSi/golang-tip/issues/8

targz:
name: TarGz
name: TarGz (${{ matrix.branch }}, ${{ matrix.os }}, ${{ matrix.goroot }})
timeout-minutes: 20

strategy:
Expand Down Expand Up @@ -109,6 +109,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false

- name: Build .tar.gz file
run: make targz-build

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ env GOROOT_FINAL=/usr/local/go ./make.bash
cd /
rm -fr /usr/local/go
rm -fr /tmp/golang-tip/.git
mv -v /tmp/golang-tip /usr/local/go
mv /tmp/golang-tip /usr/local/go
go version

# to save time to users
Expand Down

0 comments on commit c81037a

Please sign in to comment.