Skip to content

Commit

Permalink
fix: better handling of update check
Browse files Browse the repository at this point in the history
  • Loading branch information
jakowenko committed Jun 12, 2022
1 parent 3e70afc commit 6de1cf1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/Toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,12 @@ export default {
const [lastBuild] = actions.workflow_runs.filter((run) =>
tag === 'latest'
? !run.head_branch.includes('beta') &&
run.event === 'release' &&
run.name === 'build' &&
run.status === 'completed' &&
run.conclusion === 'success'
run.conclusion === 'success' &&
run.name !== 'CodeQL'
: run.head_branch.includes('beta') &&
run.name === 'build' &&
run.status === 'completed' &&
run.conclusion === 'success' &&
run.name !== 'CodeQL',
Expand Down

0 comments on commit 6de1cf1

Please sign in to comment.