Skip to content

Commit 70f48ae

Browse files
author
Steven Silvester
authored
Merge pull request #165 from jtpio/upload-assets-readme
Document uploading release assets as artifacts
2 parents 527dc48 + 1e173a1 commit 70f48ae

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,16 @@ version_info = tuple(parts)
251251
252252
_Note_ The check release action needs `contents: write` [permission](https://docs.github.com/en/actions/reference/authentication-in-a-workflow#modifying-the-permissions-for-the-github_token).
253253

254+
- [ ] If you would like the release assets to be uploaded as artifacts, add the following step after the `check_release` action:
255+
256+
```yaml
257+
- name: Upload Distributions
258+
uses: actions/upload-artifact@v2
259+
with:
260+
name: jupyter-releaser-dist-${{ github.run_number }}
261+
path: .jupyter_releaser_checkout/dist
262+
```
263+
254264
- [ ] Update or add `RELEASE.md` that describes the onboarding and release process, e.g.
255265

256266
```markdown

0 commit comments

Comments
 (0)