We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab43c97 commit 0ae79acCopy full SHA for 0ae79ac
.github/workflows/build.yml
@@ -29,15 +29,14 @@ jobs:
29
-
30
name: Install golang
31
run: |
32
- sudo add-apt-repository ppa:longsleep/golang-backports -y
33
- sudo apt update
34
- sudo apt install -y golang
+ curl https://go.dev/dl/go1.19.6.linux-amd64.tar.gz -Ls | sudo tar xzf - -C /usr/local/
35
36
name: Checkout
37
uses: actions/checkout@v2
38
39
name: Build
40
+ export PATH=$PATH:/usr/local/go/bin
41
git clone https://github.com/cloudflare/cloudflared -b ${{needs.check.outputs.ver}} ../src
42
cd ../src
43
GOOS=linux GOARCH=mipsle GOMIPS=softfloat make cloudflared
0 commit comments