Revert Me: Manually install go 1.16 until github actions updates image
This commit is contained in:
parent
703066682e
commit
bf7f957af2
2 changed files with 8 additions and 4 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -15,11 +15,13 @@ jobs:
|
|||
git config user.email "action@github.com"
|
||||
git log -1 --format="%H"
|
||||
- name: test
|
||||
run: make test
|
||||
run: |
|
||||
sudo snap install go --edge --classic
|
||||
GOROOT=/snap/go/current make test
|
||||
- name: gh-pages
|
||||
run: |
|
||||
git checkout --orphan gh-pages && git reset
|
||||
make generate-gh-pages
|
||||
GOROOT=/snap/go/current make generate-gh-pages
|
||||
git add -f docs/ && git commit -m deploy
|
||||
git push -f origin gh-pages
|
||||
- name: notify
|
||||
|
|
6
org/testdata/misc.html
vendored
6
org/testdata/misc.html
vendored
|
@ -220,11 +220,13 @@ jobs:
|
|||
git config user.email "action@github.com"
|
||||
git log -1 --format="%H"
|
||||
- name: test
|
||||
run: make test
|
||||
run: |
|
||||
sudo snap install go --edge --classic
|
||||
GOROOT=/snap/go/current make test
|
||||
- name: gh-pages
|
||||
run: |
|
||||
git checkout --orphan gh-pages && git reset
|
||||
make generate-gh-pages
|
||||
GOROOT=/snap/go/current make generate-gh-pages
|
||||
git add -f docs/ && git commit -m deploy
|
||||
git push -f origin gh-pages
|
||||
- name: notify
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue