Skip to content

Commit 5873849

Browse files
jtpioZsailer
authored andcommitted
Add GitHub Actions workflow to check release
1 parent 232c63d commit 5873849

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

0 commit comments

Comments
 (0)