We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4bf4d98 + 99384f5 commit 0c5fe69Copy full SHA for 0c5fe69
.github/workflows/cf-pages.yml
@@ -10,20 +10,24 @@ on:
10
11
jobs:
12
deploy:
13
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
14
concurrency:
15
group: ${{ github.workflow }}-${{ github.ref }}
16
steps:
17
- - uses: actions/checkout@v3
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
with:
20
fetch-depth: 1
- - uses: actions/setup-node@v3
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v4
23
- node-version: 16
24
+ node-version: '18'
25
cache: 'npm'
26
- - run: npm install
- - run: npm run build-site
27
+ - name: Install dependencies
28
+ run: npm install
29
+ - name: Build site
30
+ run: npm run build-site
31
32
- name: Publish
33
uses: cloudflare/pages-action@v1
0 commit comments