github action building

pull/576/head
hunterlong 2020-05-05 20:21:20 -07:00
parent d2436c6f40
commit 041c23de8a
1 changed files with 6 additions and 4 deletions

View File

@ -248,7 +248,6 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: '1.14.2'
- uses: actions/checkout@v2
with:
fetch-depth: 1
@ -263,7 +262,9 @@ jobs:
shell: bash
- name: Download Go mods
run: make test-deps
run: |
cd ./go/src/github.com/${{ github.repository }}
make test-deps
- name: Download Compiled Frontend (rice-box.go)
uses: actions/download-artifact@v1
@ -290,7 +291,6 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: '1.14.2'
- uses: actions/checkout@v2
with:
fetch-depth: 1
@ -305,7 +305,9 @@ jobs:
shell: bash
- name: Download Go mods
run: make test-deps
run: |
cd ./go/src/github.com/${{ github.repository }}
make test-deps
- name: Download Compiled Frontend (rice-box.go)
uses: actions/download-artifact@v1