Skip to content

ci/cd --pipeline

ci/cd --pipeline #4

Workflow file for this run

name: Deploy wesite on push
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-and-deploy:
name: Deploy
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Get latest code
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
uses: actions/checkout@v2
- name: Set Node.js Version
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build --if-present
env:
CI: false
- name: List output files
run: find dist/ -print
- name: Sync files
uses: SamKirkland/[email protected]
with:
server: server1.ahost.cloud
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
local-dir: dist/
server-dir: /