Skip to content

Commit c1b39cd

Browse files
committed
update check-release
1 parent e4fd884 commit c1b39cd

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

.github/workflows/check-release.yml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,26 @@ name: Check Release
22
on:
33
push:
44
branches:
5-
- "*"
5+
- '*'
66
pull_request:
77
branches:
8-
- "*"
8+
- '*'
99

1010
permissions:
11-
contents:
12-
write
11+
contents: write
1312

1413
jobs:
1514
check_release:
1615
runs-on: ubuntu-latest
17-
strategy:
18-
matrix:
19-
group: [check_release, link_check]
2016
steps:
17+
- uses: actions/checkout@v2
18+
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2119
- name: Check Release
22-
if: ${{ matrix.group == 'check_release' }}
23-
env:
24-
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }}
2520
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
2621
with:
2722
token: ${{ secrets.GITHUB_TOKEN }}
28-
29-
- name: Check Links
30-
if: ${{ matrix.group == 'link_check' }}
31-
uses: jupyter-server/jupyter_releaser/.github/actions/check-links@v1
23+
- name: Upload Distributions
24+
uses: actions/upload-artifact@v2
25+
with:
26+
name: jupyter-resource-usage-releaser-dist-${{ github.run_number }}
27+
path: .jupyter_releaser_checkout/dist

0 commit comments

Comments
 (0)