-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7be1d9f
commit acc6b74
Showing
1 changed file
with
19 additions
and
16 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 |
---|---|---|
|
@@ -17,23 +17,26 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
- name: Install pnpm | ||
uses: pnpm/[email protected] | ||
with: | ||
node-version: '18.x' | ||
- name: Install rsync | ||
run: sudo apt-get install rsync -y | ||
|
||
- name: Install npm dependencies | ||
run: npm install pnpm && pnpm i | ||
version: 8 | ||
run_install: true | ||
|
||
- name: pnpm i | ||
run: pnpm i | ||
|
||
# - name: Install rsync | ||
# run: sudo apt-get install rsync -y | ||
|
||
- name: Run build task | ||
run: set process.env.CI=false && npx craco build | ||
|
||
- name: Deploy to Server | ||
uses: easingthemes/[email protected] | ||
with: | ||
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }} | ||
REMOTE_HOST: ${{ secrets.REMOTE_HOST }} | ||
REMOTE_USER: root | ||
SOURCE: /build | ||
TARGET: /www/temp | ||
# - name: Deploy to Server | ||
# uses: easingthemes/[email protected] | ||
# with: | ||
# SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }} | ||
# REMOTE_HOST: ${{ secrets.REMOTE_HOST }} | ||
# REMOTE_USER: root | ||
# SOURCE: /build | ||
# TARGET: /www/temp |