]>
Commit | Line | Data |
---|---|---|
51e9e152 C |
1 | name: "Reusable deploy on builds.joinpeertube.org" |
2 | ||
3 | description: "Reusable deploy on builds.joinpeertube.org" | |
4 | ||
5 | inputs: | |
6 | source: | |
7 | required: true | |
8 | description: "Source file/files/directory/directories to deploy" | |
9 | destination: | |
10 | required: true | |
11 | description: "Destination directory on builds.joinpeertube.org" | |
12 | knownHosts: | |
13 | required: true | |
14 | description: "Known hosts" | |
15 | deployKey: | |
16 | required: true | |
17 | description: "Deploy key" | |
18 | deployUser: | |
19 | required: true | |
20 | description: "Deploy user" | |
21 | deployHost: | |
22 | required: true | |
23 | description: "Deploy host" | |
24 | ||
25 | ||
26 | runs: | |
27 | using: "composite" | |
28 | ||
29 | steps: | |
30 | - name: "Deploy" | |
31 | shell: bash | |
32 | run: | | |
33 | mkdir -p ~/.ssh | |
34 | chmod 700 ~/.ssh | |
35 | ||
36 | echo "Adding ssh key to known hosts" | |
37 | echo -e "${{ inputs.knownHosts }}" > ~/.ssh/known_hosts; | |
38 | ||
39 | eval `ssh-agent -s` | |
40 | ||
41 | echo "Adding ssh deploy key" | |
42 | ssh-add <(echo "${{ inputs.deployKey }}"); | |
43 | ||
44 | echo "Uploading files" | |
45 | ||
46 | scp ${{ inputs.source }} ${{ inputs.deployUser }}@${{ inputs.deployHost }}:../../web/${{ inputs.destination }}; |