-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (41 loc) · 1.64 KB
/
Copy pathredirect.yml
File metadata and controls
46 lines (41 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Redirect
# 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 "redirect"
redirect:
if: ${{ github.ref == 'refs/heads/demo' }}
# The type of runner that the job will run on
runs-on: self-hosted
permissions:
contents: read
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Get Source
run: |
cd /home/ubuntu
[ -d mrz-scanner-javascript ] && rm -rf mrz-scanner-javascript
git clone --depth 1 -b demo https://github.com/Dynamsoft/mrz-scanner-javascript.git
- name: Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.0
with:
server: ${{ secrets.FTP_DEMO_SERVER }}
username: ${{ secrets.FTP_DEMO_USERNAME }}
password: ${{ secrets.FTP_DEMO_PASSWORD }}
port: 21
local-dir: /home/ubuntu/mrz-scanner-javascript/link-redirect-config/
server-dir: /Demo.dynamsoft.com/solutions/mrz-scanner/
- name: Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.0
with:
server: ${{ secrets.FTP_DEMO_SERVER }}
username: ${{ secrets.FTP_DEMO_USERNAME }}
password: ${{ secrets.FTP_DEMO_PASSWORD }}
port: 21
local-dir: /home/ubuntu/mrz-scanner-javascript/link-redirect-config/
server-dir: /Demo.dynamsoft.com/solutions/passport-scanner/