mirror of
https://github.com/Luzifer/mondash-checkgpg.git
synced 2024-11-09 09:00:04 +00:00
Add auto-publishing
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
869830ffb3
commit
c691273ac9
2 changed files with 22 additions and 0 deletions
12
.repo-runner.yaml
Normal file
12
.repo-runner.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
image: "reporunner/golang-alpine"
|
||||||
|
checkout_dir: /go/src/github.com/Luzifer/mondash-checkgpg
|
||||||
|
|
||||||
|
commands:
|
||||||
|
- make publish
|
||||||
|
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
GO111MODULE: on
|
||||||
|
MOD_MODE: readonly
|
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
default: generate
|
||||||
|
|
||||||
|
generate:
|
||||||
|
docker run --rm -ti -v $(CURDIR):$(CURDIR) -w $(CURDIR)/src node:12-alpine \
|
||||||
|
sh -exc "npx npm@lts ci && npx npm@lts run build && chown -R $(shell id -u) ../frontend node_modules"
|
||||||
|
go generate
|
||||||
|
|
||||||
|
publish:
|
||||||
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
||||||
|
bash golang.sh
|
Loading…
Reference in a new issue