Compare commits
2 Commits
3634111e3b
...
9b45db7745
Author | SHA1 | Date |
---|---|---|
giaogiao | 9b45db7745 | |
giaogiao | e83d55a771 |
26
.drone.yml
26
.drone.yml
|
@ -8,7 +8,31 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- go test
|
- go test
|
||||||
|
|
||||||
|
- name: clone_build_web
|
||||||
|
image: node
|
||||||
|
volumes:
|
||||||
|
- name: bulid-workspace
|
||||||
|
path: /root/web
|
||||||
|
commands:
|
||||||
|
- git clone https://git.shagain.club/lingling/go_echo_wol_web.git
|
||||||
|
- git checkout master
|
||||||
|
- npm install yarn
|
||||||
|
- cd go_echo_wol_web
|
||||||
|
- yarn
|
||||||
|
- yarn build
|
||||||
|
- cp -r ./build /root/web/build
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: golang
|
image: golang
|
||||||
|
volumes:
|
||||||
|
- name: bulid-workspace
|
||||||
|
path: /root/web
|
||||||
commands:
|
commands:
|
||||||
- go build
|
- rm -rf ./app/*
|
||||||
|
- cp -r /web/build ./app
|
||||||
|
- sed 's/\/static/\/static\/static/g' ./app/index.html
|
||||||
|
- sed 's/\/favicon.ico/\/static\/favicon.ico/g' ./app/index.html
|
||||||
|
- sed 's/\/logo192.png/\/static\/logo192.png/g' ./app/index.html
|
||||||
|
- sed 's/\/manifest.json/\/static\/manifest.json/g' ./app/index.html
|
||||||
|
- go build -o main
|
||||||
|
- cp main /root/web/build/
|
Loading…
Reference in New Issue