diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-22 13:36:56 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-22 13:39:25 +0100 |
| commit | 017cc4dd39aa53cba2e12e05aebbab6d6b285622 (patch) | |
| tree | f50ae688b8264eeb55f11bd7baaf967734c0aa79 /.github/workflows | |
| parent | dea176b5660bba7bf13940f3c02f84aa5ea0da16 (diff) | |
Workflows Deploy: Update Go version and fix python build deps
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 |
