Skip to content

CI

CI #4

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 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-Demo:
if: ${{ github.ref == 'refs/heads/demo' }}
# The type of runner that the job will run on
runs-on: self-hosted
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a set of commands using the runners shell
- name: Get Source
run: |
cd /home/ubuntu
[ -d capture-vision-javascript-samples ] && rm -rf capture-vision-javascript-samples
git clone --depth 1 -b demo https://github.com/Dynamsoft/capture-vision-javascript-samples.git
- name: Sync files
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_DEMO_SERVER }}
username: ${{ secrets.FTP_DEMO_USERNAME }}
password: ${{ secrets.FTP_DEMO_PASSWORD }}
port: 21
local-dir: /home/ubuntu/capture-vision-javascript-samples/
server-dir: /Demo.dynamsoft.com/Samples/DCV/JS/