We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e5fd16 commit a4c113bCopy full SHA for a4c113b
.github/workflows/check-release.yml
@@ -0,0 +1,33 @@
1
+name: Check Release
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
8
9
+
10
+permissions:
11
+ contents: write
12
13
+jobs:
14
+ check_release:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v3
19
20
+ - name: Base Setup
21
+ uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
22
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@v3
31
32
+ name: pyjs-code-runner-releaser-dist-${{ github.run_number }}
33
+ path: .jupyter_releaser_checkout/dist
0 commit comments