Skip to content

Commit

Permalink
Version 0.10.32 (#207)
Browse files Browse the repository at this point in the history
* add updated docs

* update bump

* v0.10.32
  • Loading branch information
craigrbarnes authored Jul 17, 2024
1 parent 1f2b4ac commit d8e044a
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 12 deletions.
6 changes: 4 additions & 2 deletions bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -e
# Read the GitHub token from the .token file
if [ -f .token ]; then
token=$(cat .token)
echo "GitHub token loaded from .token file."
echo "GitHub token loaded from .token file: $token"
else
echo ".token file not found. Please create a .token file with your GitHub token."
exit 1
Expand All @@ -21,6 +21,7 @@ fi
get_release_id() {
local repo=$1
local tag=$2
echo "https://api.github.com/repos/$repo/releases/tags/$tag"
local release_id=$(curl -s -H "Authorization: token $token" \
"https://api.github.com/repos/$repo/releases/tags/$tag" | jq -r '.id')
echo $release_id
Expand All @@ -42,7 +43,8 @@ upload_asset() {
repo="uc-cdis/gen3-frontend-framework"
tag="v0.10.0-alpha"
release_id=$(get_release_id $repo $tag)
if [ "$release_id" == "null" ]; then
echo $release_id
if [ $release_id == null ]; then
echo "Release tag $tag not found in repository $repo."
exit 1
else
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packages": ["packages/*"],
"useWorkspaces": true,
"version": "0.10.31"
"version": "0.10.32"
}
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gen3/core",
"version": "0.10.31",
"version": "0.10.32",
"author": "CTDS",
"description": "Core module for gen3 frontend. Provides an interface for interacting with the gen3 API and a redux store for managing state.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gen3/frontend",
"version": "0.10.31",
"version": "0.10.32",
"description": "Gen3 frontend components, content management, and pages",
"keywords": [],
"author": "Center for Translational Data Science",
Expand Down
2 changes: 1 addition & 1 deletion packages/sampleCommons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gen3/samplecommons",
"version": "0.10.31",
"version": "0.10.32",
"private": true,
"scripts": {
"lint": "next lint",
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/localDev/docs/Setting Up Kind on OSX.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ nodes:
```
Create a Kubernetes secret:
```bash
kubectl create secret tls localhost-gen3 --cert=cert.pem --key=key.pem --namespace default
kubectl create secret tls localhost-gen3 --cert=cert.pem --key=key.pem --namespace ingress-nginx
```

confirm secret:
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gen3/toolsff",
"version": "0.10.31",
"version": "0.10.32",
"description": "tools for processing portal content",
"main": "index.js",
"type": "module",
Expand Down

0 comments on commit d8e044a

Please sign in to comment.