diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deploy.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ea3dc38..d1766bb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -39,11 +39,14 @@ jobs: # Install rtd theme pip install sphinx_rtd_theme - - name: Install go - run: | - sudo apt -y install golang-go + - uses: actions/setup-go@v3 + with: + go-version: ^1.22 - name: Build & Install python-eduvpn-common run: | + # install pip deps + pip install wheel setuptools build + # Make go library make |
