forked from NiceneNerd/BCML
-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (89 loc) · 3.14 KB
/
publish.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Upload Python Package
on:
release:
types: [created]
jobs:
deploy_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Set up Node.js
uses: actions/setup-node@v1
env:
RUNNER_TEMP: /tmp
with:
node-version: "14.x"
- name: Install Python dependencies
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip wheel setuptools
pip install twine mkdocs mkdocs-material
- name: Generate webpack bundle
working-directory: ./bcml/assets
run: |
npm install
./node_modules/.bin/webpack --mode production
- name: Build docs
run: |
source venv/bin/activate
mkdocs build -d ./bcml/assets/help
- uses: actions-rs/toolchain@v1
name: Install Rust
with:
profile: minimal
toolchain: nightly
override: true
- uses: messense/maturin-action@v1
name: Publish with Maturin
with:
maturin-version: latest
command: publish
args: --no-sdist -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }}
rust-toolchain: nightly
deploy_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Set up Node.js
uses: actions/setup-node@v1
# env:
# RUNNER_TEMP: /tmp
with:
node-version: "14.x"
- name: Install Python dependencies
run: |
python -m venv venv
venv\Scripts\activate.ps1
python -m pip install --upgrade pip wheel setuptools
pip install twine mkdocs mkdocs-material
- name: Generate webpack bundle
working-directory: .\bcml\assets
run: |
npm install
npm run build
- name: Build docs
run: |
venv\Scripts\activate.ps1
mkdocs build -d .\bcml\assets\help
- uses: actions-rs/toolchain@v1
name: Install Rust
with:
profile: minimal
toolchain: nightly
override: true
- uses: messense/maturin-action@v1
name: Publish with Maturin
with:
maturin-version: latest
command: publish
args: --no-sdist -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }}
rust-toolchain: nightly