Skip to content

Commit 9a95b55

Browse files
authored
fix: releaser (#30)
1 parent b802ca4 commit 9a95b55

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/check-release.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
name: Check Release
22
on:
33
push:
4-
branches: ["main"]
4+
branches: ["*"]
55
pull_request:
66
branches: ["*"]
7+
release:
8+
types: [published]
9+
schedule:
10+
- cron: "0 0 * * *"
711

812
jobs:
913
check_release:
1014
runs-on: ubuntu-latest
1115
steps:
1216
- name: Checkout
13-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1418
- name: Base Setup
1519
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
16-
- name: Install Dependencies
17-
run: |
18-
pip install -e .
1920
- name: Check Release
2021
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
2122
with:
22-
2323
token: ${{ secrets.GITHUB_TOKEN }}
24+
version_spec: next
2425

2526
- name: Upload Distributions
26-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2728
with:
28-
name: jupyterlab_myst-releaser-dist-${{ github.run_number }}
29+
name: hatch-nodejs-version-dist-${{ github.run_number }}
2930
path: .jupyter_releaser_checkout/dist

0 commit comments

Comments
 (0)