Skip to content

Commit

Permalink
💾 Saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed Feb 20, 2024
1 parent b767dfe commit 08836ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-actions-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
steps:
- name: Install Go
run: |
apt-get update
apt-get install -y curl wget
sudo apt-get update
sudo apt-get install -y curl wget
wget https://golang.org/dl/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz
tar -xvf go${GO_VERSION}.linux-${GO_ARCH}.tar.gz
mv go /usr/local
sudo mv go /usr/local
rm go${GO_VERSION}.linux-${GO_ARCH}.tar.gz
export PATH="/usr/local/go/bin:${PATH}"
export GOPATH="/home/${USER_NAME}/go"
Expand Down

0 comments on commit 08836ee

Please sign in to comment.