We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2e6eb2 commit c1af109Copy full SHA for c1af109
1 file changed
src/index.ts
@@ -47,7 +47,9 @@ async function run(): Promise<void> {
47
48
// Upload the file to Vercel Blob storage
49
// The put() function handles the actual upload and returns metadata about the uploaded blob
50
- const result = await put(destinationPath, fileStream);
+ const result = await put(destinationPath, fileStream, {
51
+ access: 'public'
52
+ });
53
54
// Log successful upload and provide the blob URL
55
core.info(`File uploaded successfully to ${result.url}`);
0 commit comments