-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add check-release workflow from jupyter-releaser
- Loading branch information
1 parent
c6e7546
commit 2c85bf5
Showing
7 changed files
with
9,728 additions
and
4,407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Check Release | ||
on: | ||
push: | ||
branches: [master, main] | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
check_release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | ||
- name: Check Release | ||
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Upload Distributions | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: jupyter-resource-usage-releaser-dist-${{ github.run_number }} | ||
path: .jupyter_releaser_checkout/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"lerna": "3.10.7", | ||
"npmClient": "jlpm", | ||
"useWorkspaces": true, | ||
"version": "independent", | ||
"packages": ["packages/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "jupyterlab-jupytext-extensions", | ||
"version": "1.3.9", | ||
"private": true, | ||
"files": [], | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"scripts": { | ||
"build": "lerna run --parallel build", | ||
"build-py": "rimraf dist && mkdir -p dist && lerna run --parallel clean:all && lerna exec --concurrency 4 -- python -m build && lerna exec --concurrency 4 -- mv ./dist/jupyterlab* ../../dist/", | ||
"build:prod": "lerna run --parallel build:prod", | ||
"install-ext": "lerna run build:labextension:dev", | ||
"install-py": "lerna exec --concurrency 4 -- python -m pip install -e .", | ||
"clean:all": "lerna run --parallel clean:all", | ||
"update-dependency": "update-dependency --lerna", | ||
"watch": "lerna run --parallel watch" | ||
}, | ||
"devDependencies": { | ||
"lerna": "^6.6.0", | ||
"rimraf": "^3.0.2" | ||
} | ||
} |
Oops, something went wrong.