Skip to content

Commit 05abdb1

Browse files
committed
ci: enable save-cache in cd workflow
1 parent 2d80e7a commit 05abdb1

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/cd.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
name: "Deploy to Vercel"
1+
name: Deploy to Vercel
22

33
on:
44
workflow_dispatch:
55
push:
6-
branches: ["main"]
6+
branches: [main]
77

88
jobs:
99
cd:
10-
environment: "production"
11-
runs-on: "ubuntu-latest"
10+
environment: production
11+
runs-on: ubuntu-latest
1212
steps:
13-
- name: "Set up devkit"
14-
uses: "sablier-labs/devkit/actions/setup@v1"
13+
- name: Set up devkit
14+
uses: sablier-labs/devkit/actions/setup@v1
1515
with:
16-
package-manager: "bun"
16+
save-cache: true
1717

18-
- name: "Run the code checks"
19-
run: "just full-check"
18+
- name: Run the code checks
19+
run: just full-check
2020

21-
- name: "Deploy to Vercel"
21+
- name: Deploy to Vercel
2222
env:
2323
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
2424
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
2525
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
26-
run: "just deploy"
26+
run: just deploy
2727

28-
- name: "Add summary"
28+
- name: Add summary
2929
run: |
3030
echo "## Continuous Deployment results" >> $GITHUB_STEP_SUMMARY
3131
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)