mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
c19323de9a
* Use Jupyter Releaser * Automated Changelog Entry for 6.4.0a0 on notebook-releaser * Publish 6.4.0a0 SHA256 hashes: dist/notebook-6.4.0a0-py3-none-any.whl: abbbbb02504cedb85c2d5eeac39ea11615360b9b0075126bf180d6011eac14a5 dist/notebook-6.4.0a0.tar.gz: 2984630a020a9396c61b2c3b98f43b1957dd0121b162a926b3d6136fafa7ca16 * Bump to 6.5.0.dev0 * Remove jupyter_packaging as a runtime requirement * Automated Changelog Entry for 6.4.0a1 on notebook-releaser * Publish 6.4.0a1 SHA256 hashes: dist/notebook-6.4.0a1-py3-none-any.whl: 4b0ae5cb972b5b16b18b942810b85859185ef2081017dd495e5f57099ce06ef4 dist/notebook-6.4.0a1.tar.gz: c48e10d34afa35e304e3b7deca1882508195960f35c4661dec044bb8da344ae5 * Bump to 6.5.0.dev0 * Update notebook/_version.py Co-authored-by: Kevin Bates <kbates4@gmail.com> * Update pyproject.toml Co-authored-by: Kevin Bates <kbates4@gmail.com> Co-authored-by: GitHub Action <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Steven Silvester <steven.silvester@ieee.org> Co-authored-by: Kevin Bates <kbates4@gmail.com>
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
name: Check Release
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
pull_request:
|
|
branches: ["*"]
|
|
|
|
permissions:
|
|
contents:
|
|
write
|
|
|
|
jobs:
|
|
check_release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9
|
|
architecture: "x64"
|
|
- name: Install node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14.x'
|
|
- name: Get pip cache dir
|
|
id: pip-cache
|
|
run: |
|
|
echo "::set-output name=dir::$(pip cache dir)"
|
|
- name: Cache pip
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ${{ steps.pip-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
${{ runner.os }}-pip-
|
|
- name: Cache checked links
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cache/pytest-link-check
|
|
key: ${{ runner.os }}-linkcheck-${{ hashFiles('**/.md') }}-md-links
|
|
restore-keys: |
|
|
${{ runner.os }}-linkcheck-
|
|
- name: Upgrade packaging dependencies
|
|
run: |
|
|
pip install --upgrade pip setuptools wheel --user
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install -e .
|
|
- name: Check Release
|
|
env:
|
|
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }}
|
|
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|