Skip to content

Commit

Permalink
Merge pull request #248 from stakwork/fix/work-flow
Browse files Browse the repository at this point in the history
Fix/work flow
  • Loading branch information
tobi-bams authored Jul 10, 2024
2 parents 108c93e + 97d27db commit 00834c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ env:
DOCKER_CLI_EXPERIMENTAL: enabled

on:
push:
tags:
- '*'
release:
types: [published]

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion app/src/NavFiber.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
$: firstTime = false;
$: currentTab = "General";
const tabs = ["General", "Roles", "Payments", "Api Keys"];
const tabs = ["General", "Roles", "Payments", "Api Keys", "Test"];
function setActiveTab(tab) {
currentTab = tab;
Expand Down Expand Up @@ -97,6 +97,8 @@
<Roles />
{:else if currentTab === "Api Keys"}
<Apikeys />
{:else if currentTab === "Test"}
<div>Testing new build</div>
{:else}
<EnpointPermission />
{/if}
Expand Down

0 comments on commit 00834c5

Please sign in to comment.