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
This GitHub Action allows you to interact with the Vercel Blob API by specifying a source and destination path. It is designed to facilitate the management of blobs in your Vercel projects.
4
+
5
+
## Inputs
6
+
7
+
-`source`: The source path of the blob you want to manage.
8
+
-`destination`: The destination path where the blob should be moved or copied.
9
+
10
+
## Usage
11
+
12
+
To use this action in your workflow, you can include it as follows:
13
+
14
+
```yaml
15
+
name: Example Workflow
16
+
17
+
on: [push]
18
+
19
+
jobs:
20
+
upload_blob:
21
+
runs-on: ubuntu-latest
22
+
steps:
23
+
- name: Checkout code
24
+
uses: actions/checkout@v2
25
+
26
+
- name: Upload Blob
27
+
uses: your-username/vercel-blob-action@v1.0.0
28
+
with:
29
+
source: 'path/to/source'
30
+
destination: 'path/to/destination'
31
+
```
32
+
33
+
## Example
34
+
35
+
Here is an example of how to specify the source and destination paths:
0 commit comments