diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f64b073e..928b977b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -115,7 +115,7 @@ jobs: run: | ls -hal binaries/signed sha1sum binaries/signed/* - - name: Sign && upload windows binaries + - name: Sign & upload windows binaries uses: actions/github-script@v7 with: script: | diff --git a/scripts/actions/sign.js b/scripts/actions/sign.js index 0ba5a9b6..a27cab0d 100644 --- a/scripts/actions/sign.js +++ b/scripts/actions/sign.js @@ -1,7 +1,7 @@ import fs from "fs"; const releaseId = "${{ needs.create-release.outputs.release_id }}"; -const SIGNED_BINARIES_DIR = "./signed/binaries"; +const SIGNED_BINARIES_DIR = "binaries/signed"; /** @param {import('@types/github-script').AsyncFunctionArguments} AsyncFunctionArguments */ export const script = async ({ context, github }) => {