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
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
4
11
runs-on: ubuntu-latest
5
12
steps:
6
-
# build your site for deployment... in this case the `public` folder is being deployed
7
-
- name: Checkout
8
-
uses: actions/checkout@v3
13
+
- name: Checkout Repository
14
+
uses: actions/checkout@v4
9
15
10
16
- name: Install pnpm
11
-
uses: pnpm/action-setup@v2
17
+
uses: pnpm/action-setup@v4
12
18
with:
13
19
version: 9
14
20
15
-
- name: Build Site
21
+
- name: Use Node.js
22
+
uses: actions/setup-node@v4
23
+
with:
24
+
node-version: "20"
25
+
cache: "pnpm"
26
+
27
+
- name: Install and Build # This example project is built using pnpm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
16
28
run: |
17
29
pnpm install
18
30
pnpm run build
19
31
20
-
- name: Publish
21
-
uses: South-Paw/action-netlify-cli@v2
22
-
id: netlify
32
+
- name: Deploy to GitHub Pages
33
+
uses: JamesIves/github-pages-deploy-action@v4
23
34
with:
24
-
# be sure to escape any double quotes with a backslash
0 commit comments