Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Sep 1, 2024
1 parent 49eb600 commit c18d080
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
result-encoding: string
script: |
const version = await require("./index.mjs")();
const version = await import("./index.mjs")();
console.log(`Version: ${version}`);
return version;
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
release_id: ${{ needs.create_release.outputs.release_id }}
with:
script: |
await require("./index.js").release();
await (await import("./index.mjs")).release();
- name: Build .ahqstore (Electron)
run: ahqstore upload
Expand Down

0 comments on commit c18d080

Please sign in to comment.