File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Check Release
2+ on :
3+ push :
4+ branches : ['main']
5+ pull_request :
6+
7+ permissions :
8+ contents : read
9+
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
12+ cancel-in-progress : true
13+
14+ jobs :
15+ check_release :
16+ runs-on : ubuntu-latest
17+ timeout-minutes : 30
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v5
21+ - name : Base Setup
22+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
23+ - name : Check Release
24+ uses : jupyter-server/jupyter_releaser/.github/actions/check-release@v2
25+ with :
26+ token : ${{ secrets.GITHUB_TOKEN }}
27+ version_spec : next
28+
29+ - name : Upload Distributions
30+ uses : actions/upload-artifact@v4
31+ with :
32+ name : jupyter-server-mcp-dist-${{ github.run_number }}
33+ path : .jupyter_releaser_checkout/dist
You can’t perform that action at this time.
0 commit comments