Skip to content

Commit

Permalink
add sim to toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvin Lee authored and ariefrahmansyah committed Oct 26, 2022
1 parent ccae675 commit 3654dab
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

publish-mlp-docker:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
#if: ${{ startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
needs: integration-test
steps:
Expand Down
3 changes: 3 additions & 0 deletions db-migrations/11_update_merlin_app_config.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
UPDATE applications
SET config = '{}'
WHERE name = 'Merlin';
13 changes: 13 additions & 0 deletions db-migrations/11_update_merlin_app_config.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
UPDATE applications
SET config = '{
"sections": [
{
"name": "Models",
"href": "/models"
},
{
"name": "Standard Transformer Simulator",
"href": "/transformer-simulator"
}
]
}' WHERE name = 'Merlin';

0 comments on commit 3654dab

Please sign in to comment.