Skip to content

Commit 90d30f9

Browse files
committed
release upload update
1 parent 99b18f1 commit 90d30f9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Publish GitHub Release
3434
run: |
35-
gh release create $GITHUB_REF_NAME --generate-notes ./artifacts/*
35+
gh release upload $GITHUB_REF_NAME ./artifacts/* --clobber
3636
3737
deploy:
3838
runs-on: ubuntu-latest

website/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@ const fileSettingsFolder = panel.addFolder("Graph");
221221
fileSettingsFolder.add(fileControls, "newGraph").name("New")
222222
fileSettingsFolder.add(fileControls, "saveGraph").name("Save")
223223
fileSettingsFolder.add(fileControls, "loadProfile").name("Load");
224-
fileSettingsFolder.add(fileControls, "link").name("Link");
224+
225+
// Graphs when compressed still make for a giant URL
226+
// fileSettingsFolder.add(fileControls, "link").name("Get Link");
225227

226228
const exportSettingsFolder = panel.addFolder("Export");
227229
exportSettingsFolder.add(fileControls, "saveModel").name("Model")

0 commit comments

Comments
 (0)