Skip to content

Commit

Permalink
fix: missing await in generator (#12)
Browse files Browse the repository at this point in the history
* fix: missing await in generator

* tiny: relabeling a CI build step
  • Loading branch information
stigi authored Dec 19, 2024
1 parent a3c9528 commit 613d1c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/regen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
cp .build/release/sourcedocs /usr/local/bin
popd
- name: Regen `magicbell-java-client`
- name: Regen `magicbell-swift-client`
run: yarn codegen
env:
LIBLAB_TOKEN: ${{ secrets.LIBLAB_ACTION_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async function build() {
}
);

move("output/sources", "Sources/MagicBellClient/generated")
await move("output/sources", "Sources/MagicBellClient/generated")

if (!hasChangesInPath("Sources")) {
console.log("No changes detected in output.");
Expand Down

0 comments on commit 613d1c0

Please sign in to comment.