Merge pull request #209 from dom-jiang/main #175
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
name: deploy-aws-us | |
on: | |
push: | |
branches: [ main ] | |
# pull_request: | |
# types: | |
# closed | |
# branches: | |
# - 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: mydist | |
path: './*' | |
deploy-aws-us: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: mydist | |
path: mydist | |
- name: deploy to remote server [54.84.46.117] | |
uses: easingthemes/[email protected] | |
with: | |
# 服务器私钥 | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY_PROD_01 }} | |
# Server IP | |
REMOTE_HOST: 54.84.46.117 | |
# Username | |
REMOTE_USER: root | |
# Port | |
REMOTE_PORT: 60022 | |
# Source Path | |
SOURCE: "mydist/" | |
# Target Path | |
TARGET: "/data/web/indexer-helper" | |
# rsync | |
ARGS: "-rltgoDzvO" | |
# An array of folder to exclude | |
EXCLUDE: ".git, .github" | |
- name: Execute SSH commmands on remote server[54.84.46.117] | |
uses: appleboy/ssh-action@master | |
with: | |
host: 54.84.46.117 | |
username: root | |
key: ${{ secrets.SSH_PRIVATE_KEY_PROD_01 }} | |
port: 60022 | |
script: | | |
sh /data/web/indexer-helper/boot.sh restart | |
- name: deploy to remote server [18.207.83.196] | |
uses: easingthemes/[email protected] | |
with: | |
# Private Key | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY_PROD_02 }} | |
# Server IP | |
REMOTE_HOST: 18.207.83.196 | |
# Useranme | |
REMOTE_USER: root | |
# Port | |
REMOTE_PORT: 60022 | |
# Source Path | |
SOURCE: "mydist/" | |
# Target Path | |
TARGET: "/data/web/indexer-helper" | |
# rsync | |
ARGS: "-rltgoDzvO" | |
# An array of folder to exclude | |
EXCLUDE: ".git, .github" | |
- name: Execute SSH commmands on remote server [18.207.83.196] | |
uses: appleboy/ssh-action@master | |
with: | |
host: 18.207.83.196 | |
username: root | |
key: ${{ secrets.SSH_PRIVATE_KEY_PROD_02 }} | |
port: 60022 | |
script: | | |
sh /data/web/indexer-helper/boot.sh restart |