forked from Election-Tech-Initiative/electionguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (25 loc) · 832 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.PHONY: all install lint serve build deploy
all: install serve
install:
pip install --upgrade pip
pip install mkdocs
mkdocs --version
pip install mkdocs-material
pip install mkdocs-mermaid2-plugin
pip install mkdocs-redirects
lint:
mkdocs build --strict
serve:
mkdocs serve
build:
mkdocs build
deploy:
mkdocs gh-deploy --force
# To run this, ensure GITHUB_ACCESS_TOKEN environment variable set
labels:
npm install -g github-label-sync
github-label-sync --labels .github/labels.yml microsoft/electionguard
github-label-sync --labels .github/labels.yml microsoft/electionguard-cpp
github-label-sync --labels .github/labels.yml microsoft/electionguard-python
github-label-sync --labels .github/labels.yml microsoft/electionguard-api-python
github-label-sync --labels .github/labels.yml microsoft/electionguard-ui