Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5659c commit 95da2a8Copy full SHA for 95da2a8
.github/workflows/dump.yml
@@ -78,7 +78,7 @@ jobs:
78
var strconfig = JSON.stringify(config);
79
console.log(strconfig);
80
var crypto = require('crypto');
81
- var hash = crypto.createHash('sha256').update(strconfig).digest('base64');
+ var hash = crypto.createHash('sha256').update(strconfig).digest('hex');
82
await refresh();
83
resp = await fetch("https://ghcr.io/v2/${{ github.repository_owner }}/runner-images/blobs/uploads/", { method: "POST", redirect: "manual", body: "", credentials: "include", headers: {
84
"Authorization": "Bearer " + token
0 commit comments