Skip to content

Commit 0800c87

Browse files
committed
fix: create directories recursively
1 parent bbdfb0e commit 0800c87

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
runs-on: ubuntu-latest
2424

2525
steps:
26-
- uses: EricCrosson/semantic-release-your-github-action@v3
26+
- uses: EricCrosson/semantic-release-your-github-action@v3.0.8

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async function installGitHubReleaseBinary(
6565
destinationBasename
6666
);
6767

68-
fs.mkdirSync(destinationDirectory);
68+
fs.mkdirSync(destinationDirectory, { recursive: true });
6969
await tc.downloadTool(
7070
releaseAsset.url,
7171
destinationFilename,

0 commit comments

Comments
 (0)