-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update pnpm and Node.js versions in deploy-to-server.yml
- Loading branch information
1 parent
9e85580
commit 505a8cd
Showing
2 changed files
with
14,418 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,22 +20,20 @@ jobs: | |
# if your docs needs submodules, uncomment the following line | ||
# submodules: true | ||
|
||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 7 | ||
version: latest | ||
run_install: true | ||
|
||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version: 20 | ||
cache: pnpm | ||
|
||
- name: Install Deps | ||
run: pnpm install --frozen-lockfile | ||
run: pnpm install | ||
|
||
- name: Build Docs | ||
env: | ||
|
@@ -47,8 +45,8 @@ jobs: | |
uses: easingthemes/[email protected] | ||
env: | ||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | ||
ARGS: "--delete" | ||
SOURCE: "dist/" | ||
ARGS: '--delete' | ||
SOURCE: 'dist/' | ||
REMOTE_HOST: ${{ secrets.HOST }} | ||
REMOTE_USER: ${{ secrets.USER }} | ||
TARGET: ${{ secrets.REMOTE_TARGET }} |
Oops, something went wrong.