Skip to content

Commit 8c9b0c4

Browse files
authored
tmp skip release for docs
1 parent 0820578 commit 8c9b0c4

File tree

1 file changed

+30
-29
lines changed

1 file changed

+30
-29
lines changed

.github/workflows/release.yml

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,43 @@
11
name: release
22

33
on:
4+
workflow_dispatch: # Allow running on-demand
45
release:
56
types: [published]
67

78
jobs:
8-
deploy:
9-
runs-on: ubuntu-latest
10-
strategy:
11-
max-parallel: 6
12-
13-
steps:
14-
- uses: actions/checkout@v4
15-
16-
- uses: actions/setup-python@v5
17-
with:
18-
python-version: 3.11
19-
20-
- name: Install dependencies
21-
run: |
22-
python -m pip install --upgrade pip
23-
pip install setuptools setuptools_scm wheel build
24-
25-
- name: Build packages
26-
run: python -m build
27-
working-directory: ./
28-
29-
- name: Publish package
30-
uses: pypa/gh-action-pypi-publish@release/v1
31-
with:
32-
user: __token__
33-
password: ${{ secrets.PYPY_API_TOKEN }}
34-
packages_dir: ./dist/
9+
# deploy:
10+
# runs-on: ubuntu-latest
11+
# strategy:
12+
# max-parallel: 6
13+
14+
# steps:
15+
# - uses: actions/checkout@v4
16+
17+
# - uses: actions/setup-python@v5
18+
# with:
19+
# python-version: 3.11
20+
21+
# - name: Install dependencies
22+
# run: |
23+
# python -m pip install --upgrade pip
24+
# pip install setuptools setuptools_scm wheel build
25+
26+
# - name: Build packages
27+
# run: python -m build
28+
# working-directory: ./
29+
30+
# - name: Publish package
31+
# uses: pypa/gh-action-pypi-publish@release/v1
32+
# with:
33+
# user: __token__
34+
# password: ${{ secrets.PYPY_API_TOKEN }}
35+
# packages_dir: ./dist/
3536

3637
docs:
3738
runs-on: ubuntu-latest
38-
needs:
39-
- deploy
39+
# needs:
40+
# - deploy
4041

4142
steps:
4243
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)