Skip to content

Commit

Permalink
fix(build): fixes closing condition in binary build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthlatest committed Sep 29, 2024
1 parent fdde728 commit 9876f53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
release:
types: [published]
repository_dispatch:
types: [publish_binary] # Trigger by publish_binary repository_dispatch event
types: [publish_binary]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -47,6 +47,7 @@ jobs:
else
echo "Error: Version is not set."
exit 1
fi
- name: Build Dejavu App
run: yarn build:dejavu:app
Expand Down

0 comments on commit 9876f53

Please sign in to comment.