-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use environment in CI #77
Conversation
@@ -22,6 +22,7 @@ on: | |||
jobs: | |||
prep_release: | |||
runs-on: ubuntu-latest | |||
environment: release | |||
steps: | |||
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wondering if we need the actions/create-github-app-token@v1
step in the prep-release workflow?
The example workflows don't seem to have it: https://github.com/jupyter-server/jupyter_releaser/blob/main/example-workflows/prep-release.yml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah indeed, I used to use GITHUB_ADMIN_TOKEN
in the prep-release step, but actually GITHUB_TOKEN
is enough
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we would be fine using the workflows from https://github.com/jupyter-server/jupyter_releaser/blob/main/example-workflows/ directly?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you mean importing the workflow from jupyter-releaser
? I don't know how to do it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah no, just copy pasting it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
No description provided.