mirror of
https://github.com/Luzifer/password.git
synced 2024-11-09 09:50:07 +00:00
Fix: Adjust to new build script
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
a2f4478ee0
commit
a4a3a83f40
3 changed files with 6 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
image: "reporunner/golang-alpine"
|
image: "reporunner/golang-alpine"
|
||||||
checkout_dir: /src
|
checkout_dir: /go/src/github.com/Luzifer/password
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
- make publish
|
- make publish
|
||||||
|
@ -9,5 +9,6 @@ commands:
|
||||||
environment:
|
environment:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
GHUSER: Luzifer
|
GHUSER: Luzifer
|
||||||
PACKAGES: .
|
GO111MODULE: on
|
||||||
|
PACKAGES: github.com/Luzifer/password/cmd/password
|
||||||
REPO: password
|
REPO: password
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -18,5 +18,5 @@ pack: compile_js
|
||||||
bash generateXKCDWordList.sh
|
bash generateXKCDWordList.sh
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
curl -sSLo cmd/password/golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
||||||
cd cmd/password && bash golang.sh
|
bash golang.sh
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module password
|
module github.com/Luzifer/password/cmd/password
|
||||||
|
|
||||||
go 1.12
|
go 1.12
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue