1 parent d4f8878 commit bd218c0Copy full SHA for bd218c0
1 file changed
.github/workflows/deploy.yml
@@ -8,6 +8,8 @@ on:
8
jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v4
@@ -18,10 +20,13 @@ jobs:
18
20
node-version: 24
19
21
cache: yarn
22
23
+ - name: Enable Corepack
24
+ run: corepack enable
25
+
26
- name: Install dependencies
27
run: yarn install --frozen-lockfile
28
29
- name: Deploy
- run: yarn vinext deploy
30
+ run: yarn deploy
31
env:
32
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
0 commit comments