-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -345,8 +345,12 @@ jobs: | |
name: " [ web ] | Create and push git tag" | ||
command: | | ||
curl -fsSL "https://github.com/cli/cli/releases/download/v2.10.1/gh_2.10.1_linux_amd64.tar.gz" | tar xz -C "${HOME}/bin" --strip-components=2 gh_2.10.1_linux_amd64/bin/gh | ||
gh auth setup-git | ||
This comment has been minimized.
Sorry, something went wrong. |
||
git config user.email "[email protected]" | ||
git config user.name "nextstrain-bot" | ||
This comment has been minimized.
Sorry, something went wrong.
victorlin
Member
|
||
cd packages_rs/nextclade-web | ||
export version=$(node -e "\ | ||
|
@@ -440,7 +444,9 @@ workflows: | |
- Build-And-Deploy-Web: | ||
<<: *web_branches | ||
|
||
context: nextclade_web_<< pipeline.git.branch >> | ||
context: | ||
- nextclade_github | ||
- nextclade_web_<< pipeline.git.branch >> | ||
|
||
requires: | ||
- Update-Builder-Container |
1 comment
on commit 9e860b4
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.
Successfully deployed to the following URLs:
nextclade – ./
nextclade.vercel.app
nextclade-git-master-nextstrain.vercel.app
nextclade-nextstrain.vercel.app
While we're here, how does
gh auth setup-git
work with CircleCI? Is there aGITHUB_TOKEN
defined somewhere else?