Skip to content

Commit

Permalink
Update go ver in alpine distr in the actions/bin flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Tkachenko committed Sep 13, 2024
1 parent 30da48f commit 6593f3e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ jobs:
matrix:
include:
- arch: amd64
distro: alpine3.20
distro: alpine
artifact: amd64-musl
- arch: "386"
distro: alpine3.20
distro: alpine
artifact: 386-musl
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -274,10 +274,12 @@ jobs:
go_distribution: https://go.dev/dl/go1.22.7.linux-arm64.tar.gz
artifact: arm64-libc
- arch: armv6
distro: alpine3.20
distro: alpine_latest
go_distribution: https://go.dev/dl/go1.22.7.linux-armv6l.tar.gz
artifact: armv6-musl
- arch: aarch64
distro: alpine3.20
distro: alpine_latest
go_distribution: https://go.dev/dl/go1.22.7.linux-arm64.tar.gz
artifact: arm64-musl
steps:
- uses: actions/[email protected]
Expand Down Expand Up @@ -327,8 +329,12 @@ jobs:
git \
gzip \
make \
musl-dev \
go
musl-dev && \
curl -sLo go.tar.gz ${{ matrix.go_distribution }} && \
mkdir -p /usr/local/go && \
tar -x -C /usr/local -f go.tar.gz && \
rm go.tar.gz && \
export PATH=${PATH}:/usr/local/go/bin
;;
esac
Expand Down

0 comments on commit 6593f3e

Please sign in to comment.