bugfix:修复移动端主页的两个按钮文字脱离按钮问题 #14
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: Vue Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Deploy to Server | |
uses: AEnterprise/[email protected] | |
env: | |
DEPLOY_KEY: ${{ secrets.ACCESS_TOKEN }} | |
ARGS: -avz --delete | |
SERVER_PORT: '22' | |
FOLDER: ./dist/* | |
SERVER_IP: ${{ secrets.REMOTE_HOST }} | |
USERNAME: ${{ secrets.SSH_USERNAME }} | |
SERVER_DESTINATION: ${{ secrets.SERVER_DESTINATION }} |