Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 86d4143

Browse files
committed
0.0.1
1 parent ea4f80f commit 86d4143

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

dist/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33096,6 +33096,9 @@ function httpRedirectFetch (fetchParams, response) {
3309633096
// https://fetch.spec.whatwg.org/#cors-non-wildcard-request-header-name
3309733097
request.headersList.delete('authorization')
3309833098

33099+
// https://fetch.spec.whatwg.org/#authentication-entries
33100+
request.headersList.delete('proxy-authorization', true)
33101+
3309933102
// "Cookie" and "Host" are forbidden request-headers, which undici doesn't implement.
3310033103
request.headersList.delete('cookie')
3310133104
request.headersList.delete('host')
@@ -98081,7 +98084,7 @@ const index_main = async () => {
9808198084

9808298085
const cid = await web3Storage.uploadFile((await filesFromPaths([path]))[0])
9808398086
console.log(`Uploaded as ${cid}`)
98084-
core.setOutput('cid', cid)
98087+
core.setOutput('cid', cid.toString())
9808598088
}
9808698089

9808798090
index_main().catch(err => core.setFailed(err.message))

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "web3-storage-upload-file-action",
33
"private": true,
44
"type": "module",
5-
"version": "0.0.0",
5+
"version": "0.0.1",
66
"license": "(Apache-2.0 AND MIT)",
77
"description": "Upload a file to web3.storage",
88
"repository": "filecoin-station/web3-storage-upload-file-action",

0 commit comments

Comments
 (0)