Open
Conversation
added an explanation about how to authenticate with a github
fixed the broken link.
giordano
reviewed
Nov 21, 2020
Comment on lines
+118
to
+124
| ### How to authenticate with a github token when publishing locally? | ||
|
|
||
| 1. Get and copy a github token with access to public repositories (check in `public_repo`) | ||
| 2. Set the `GITHUB_TOKEN` environment variable to the copied token and run the Julia command as normal ([see this section for more details about publishing locally](#Can-I-publish-a-JLL-package-locally-without-going-through-Yggdrasil?)): | ||
| ```shell | ||
| GITHUB_TOKEN="<40 characters of numbers and letters>" julia ... build_tarballs.jl ... --deploy=... | ||
| ``` |
Member
There was a problem hiding this comment.
Note that this isn't specific to local deploying, but it's for whenever you need to authenticate on GitHub (there are multiple places where this is needed). I'd rather make this section more generic, with a link to GitHub documentation, and reference this section from where it's needed
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
added an explanation about how to authenticate with a github