Skip to content

Commit

Permalink
No ESM, CJS YUCK
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Nov 22, 2023
1 parent 1d0562d commit aef0d09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ jobs:
uses: actions/github-script@v7
with:
script: |
import fs from "node:fs";
# TODO: fix this with ESM later
# import fs from "node:fs";
const fs = require("fs");
const releaseId = "${{ needs.create-release.outputs.release_id }}";
// read all files from the binariees dir
Expand Down

0 comments on commit aef0d09

Please sign in to comment.