Skip to content

Commit

Permalink
fix(create-instance): Ensure MorphoCloudWorkflow use a unique client …
Browse files Browse the repository at this point in the history
…UUID
  • Loading branch information
jcfr committed Feb 3, 2025
1 parent b6a3d91 commit 0ce4430
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/create-instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,15 @@ jobs:
echo Creating instance "$INSTANCE_NAME"
# See https://jetstream2.exosphere.app/exosphere/helpabout
exoClientUuid=67296a2e-069b-49ca-9ca4-5dd296869ada
# The "Exosphere client UUID" is unique to each authenticated connection and is
# stored in the browser's local storage. It can be inspected at:
# https://jetstream2.exosphere.app/exosphere/helpabout
# The associated code is located in the Exosphere project at:
# src/LocalStorage/LocalStorage.elm
#
# The MorphCloud workflow uses a unique UUID generated with:
# python3 -c "import uuid; print(uuid.uuid4())"
exoClientUuid=b7b75870-ecb5-4aca-ae73-49474a7f531e
# See "currentExoServerVersion" in exosphere/src/Types/Server.elm
exoServerVersion=5
Expand Down

0 comments on commit 0ce4430

Please sign in to comment.