-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create main.yml * Create prod.yml * Update prod.yml * Update package.json
- Loading branch information
1 parent
03454d6
commit 3615691
Showing
3 changed files
with
90 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Stage deploy | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: | ||
- stage* | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- stage* | ||
|
||
jobs: | ||
if_merged: | ||
if: github.event.pull_request.merged == true | ||
name: 🎉 Deploy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: 🚚 Get latest code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Use Node.js 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
|
||
- name: 🔨 Build Project | ||
run: | | ||
npm i | ||
npm run build-stage | ||
- name: 📂 Deploy to Server | ||
uses: easingthemes/ssh-deploy@v4 | ||
env: | ||
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }} | ||
# ARGS: "-rltgoDzvO --delete" | ||
SOURCE: "dist/" | ||
REMOTE_HOST: 192.34.62.123 | ||
REMOTE_USER: mantis | ||
TARGET: public_html/vue/free/stage | ||
EXCLUDE: "/node_modules/" |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Prod deploy | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- master | ||
|
||
jobs: | ||
if_merged: | ||
if: github.event.pull_request.merged == true | ||
name: 🎉 Deploy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: 🚚 Get latest code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Use Node.js 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
|
||
- name: 🔨 Build Project | ||
run: | | ||
npm i | ||
npm run build-prod | ||
- name: 📂 Deploy to Server | ||
uses: easingthemes/ssh-deploy@v4 | ||
env: | ||
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }} | ||
# ARGS: "-rltgoDzvO --delete" | ||
SOURCE: "dist/" | ||
REMOTE_HOST: 192.34.62.123 | ||
REMOTE_USER: mantis | ||
TARGET: public_html/vue/free | ||
EXCLUDE: "/node_modules/" |
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