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
Copy file name to clipboardExpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -70,11 +70,11 @@ jobs:
70
70
71
71
steps:
72
72
- name: Checkout 🛎️
73
-
uses: actions/checkout@v2.3.1
73
+
uses: actions/checkout@v4.1.3
74
74
- name: Use Node.js 18.x
75
75
uses: actions/setup-node@v1
76
76
with:
77
-
node-version: '18.x'
77
+
node-version: "18.x"
78
78
79
79
- name: Installing my packages
80
80
run: npm ci
@@ -83,11 +83,11 @@ jobs:
83
83
run: npm run build && touch ./out/.nojekyll
84
84
85
85
- name: Deploy 🚀
86
-
uses: JamesIves/github-pages-deploy-action@v4.4.1
86
+
uses: JamesIves/github-pages-deploy-action@v4.6.0
87
87
with:
88
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89
-
BRANCH: public # The branch the action will deploy to
90
-
FOLDER: out # The folder the action will deploy to
88
+
token: ${{ secrets.GITHUB_TOKEN }}
89
+
branch: public # The branch the action should deploy to.
90
+
folder: out # The folder the action should deploy to.
91
91
```
92
92
93
93
Once you commit these files, the actions tab for your repository will show your action running. Actions are triggered automatically after any commits by default.
0 commit comments