mirror of
https://github.com/Luzifer/password.git
synced 2024-11-08 17:30:10 +00:00
14 lines
321 B
Makefile
14 lines
321 B
Makefile
default:
|
|
|
|
compile_js:
|
|
rm -f ./frontend/assets/*
|
|
docker run --rm -i \
|
|
-v "$(CURDIR):$(CURDIR)" \
|
|
-w "$(CURDIR)/js" \
|
|
-u $(shell id -u) \
|
|
node:18-alpine \
|
|
sh -c "node build.mjs"
|
|
|
|
publish: compile_js
|
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
|
bash golang.sh
|