Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Nov 23, 2023
1 parent 8968b20 commit da062a5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
args: --target ${{ matrix.settings.target }} --bundles ${{ matrix.settings.bundles }},updater
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload unstable ${{ matrix.platform }}
- name: Upload unstable ${{ matrix.setting.os }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/actions/download-draft-bins.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async function downloadFile(url, filepath = "./download") {
Authorization: `token ${GITHUB_TOKEN}`,
},
});
// @ts-ignore

const body = Readable.fromWeb(response.body);
const downloadWriteStream = fs.createWriteStream(filepath);
await finished(body.pipe(downloadWriteStream));
Expand Down
8 changes: 8 additions & 0 deletions scripts/sign-windows.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# op run --env-file .env -- ./test.sh
docker run -it --rm -v "./binaries/:/code/binaries" ghcr.io/sslcom/codesigner:latest batch_sign \
-username=${ES_USERNAME} \
-password=${ES_PASSWORD} \
-credential_id=${ES_CREDENTIAL_ID} \
-totp_secret=${ES_TOTP_SECRET} \
-input_dir_path="/code/binaries" \
-output_dir_path="/code/binaries/signed"

0 comments on commit da062a5

Please sign in to comment.