You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,8 @@ The signing key and proof will be used as [inputs](#inputs) to the action.
83
83
|`upload-car-artifact`| Upload and publish the CAR file on GitHub Action Summary pages |`'true'`|
84
84
|`cluster-retry-attempts`| Number of retry attempts for IPFS Cluster uploads |`'5'`|
85
85
|`cluster-timeout-minutes`| Timeout in minutes for each IPFS Cluster upload attempt |`'2'`|
86
+
|`cluster-pin-expire-in`| Time duration after which the pin will expire in IPFS Cluster (e.g. 720h for 30 days). If unset, the CID will be pinned with no expiry. | - |
87
+
|`pin-name`| Custom name for the pin. If unset, defaults to "{repo-name}-{commit-sha-short}" for both IPFS Cluster and Pinata. | - |
Copy file name to clipboardExpand all lines: action.yml
+31-3Lines changed: 31 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,12 @@ inputs:
43
43
description: 'IPFS Cluster CLI version to use'
44
44
default: 'v1.1.2'
45
45
required: false
46
+
cluster-pin-expire-in:
47
+
description: 'Time duration after which the pin will expire in IPFS Cluster (e.g. 720h for 30 days). Only supported by IPFS Cluster.'
48
+
required: false
49
+
pin-name:
50
+
description: 'Custom name for the pin. If unset, defaults to "{repo-name}-{commit-sha-short}"'
51
+
required: false
46
52
storacha-key:
47
53
description: 'Storacha base64 encoded key to use to sign UCAN invocations. Create one using `w3 key create --json`. See: https://github.com/storacha/w3cli#w3_principal'
0 commit comments