File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Check Release
2
+ on :
3
+ push :
4
+ branches :
5
+ - " *"
6
+ pull_request :
7
+ branches :
8
+ - " *"
9
+
10
+ permissions :
11
+ contents :
12
+ write
13
+
14
+ jobs :
15
+ check_release :
16
+ runs-on : ubuntu-latest
17
+ strategy :
18
+ matrix :
19
+ group : [check_release, link_check]
20
+ steps :
21
+ - name : Checkout
22
+ uses : actions/checkout@v2
23
+
24
+ - name : Base Setup
25
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
26
+
27
+ - name : Install Dependencies
28
+ run : |
29
+ pip install -e .
30
+
31
+ - name : Check Release
32
+ if : ${{ matrix.group == 'check_release' }}
33
+ env :
34
+ TWINE_PASSWORD : ${{ secrets.TEST_PYPI_TOKEN }}
35
+ uses : jupyter-server/jupyter_releaser/.github/actions/check-release@v1
36
+ with :
37
+ token : ${{ secrets.GITHUB_TOKEN }}
38
+
39
+ - name : Check Links
40
+ if : ${{ matrix.group == 'link_check' }}
41
+ uses : jupyter-server/jupyter_releaser/.github/actions/check-links@v1
You can’t perform that action at this time.
0 commit comments