Skip to content

Commit

Permalink
Update release-node.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Jan 24, 2024
1 parent 4e4496a commit 19a26fb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ jobs:
with:
path: languages/node/artifacts

# Some artifacts have been downloaded as subdirectories of the artifacts directory
# Example: artifacts/binding.js/binding.js
# Example: artifacts/binding.d.ts/binding.d.ts

# We need to move the artifacts to the root of the artifacts directory
- name: Move artifacts to root of artifacts directory
run: mkdir artifacts2 && find ./artifacts/* -type f -exec mv -i {} ./artifacts2/ \; && rm -rf ./artifacts && mv ./artifacts2 ./artifacts

- name: Copy schema and binding converter
run: npm run copy:artifacts

Expand Down

0 comments on commit 19a26fb

Please sign in to comment.