2019-09-28 02:54:49 +00:00
|
|
|
name: scp files
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
2023-04-09 08:49:19 +00:00
|
|
|
testing:
|
|
|
|
name: test scp action
|
2019-09-28 02:54:49 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-25 13:52:55 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: copy file via ssh password
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
password: ${{ secrets.PASSWORD }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: "tests/a.txt,tests/b.txt"
|
|
|
|
target: "test"
|
|
|
|
|
|
|
|
- name: copy file via ssh key
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.KEY }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: "tests/a.txt,tests/b.txt"
|
|
|
|
target: "test"
|
|
|
|
|
|
|
|
- name: remove the specified number of leading path elements
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.KEY }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: "tests/a.txt,tests/b.txt"
|
|
|
|
target: "foobar"
|
|
|
|
strip_components: 1
|
|
|
|
|
|
|
|
- name: ssh key with passphrase
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.SSH2 }}
|
|
|
|
passphrase: ${{ secrets.PASSPHRASE }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: "tests/a.txt,tests/b.txt"
|
|
|
|
target: "test"
|
|
|
|
|
|
|
|
- name: use insecure cipher
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.SSH2 }}
|
|
|
|
passphrase: ${{ secrets.PASSPHRASE }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: "tests/a.txt,tests/b.txt"
|
|
|
|
target: "test"
|
|
|
|
use_insecure_cipher: true
|
2023-04-09 09:13:24 +00:00
|
|
|
|
2023-04-09 08:49:19 +00:00
|
|
|
deploy:
|
2023-04-15 00:32:05 +00:00
|
|
|
name: test deploy artifact
|
2023-04-09 08:49:19 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-25 13:52:55 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- run: echo hello > world.txt
|
|
|
|
|
2023-12-26 02:40:20 +00:00
|
|
|
- uses: actions/upload-artifact@v4
|
2023-12-25 13:52:55 +00:00
|
|
|
with:
|
|
|
|
name: my-artifact
|
|
|
|
path: world.txt
|
|
|
|
|
2023-12-26 02:39:54 +00:00
|
|
|
- uses: actions/download-artifact@v4
|
2023-12-25 13:52:55 +00:00
|
|
|
with:
|
|
|
|
name: my-artifact
|
|
|
|
path: distfiles
|
|
|
|
|
|
|
|
- name: copy file to server
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.KEY }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: distfiles/*
|
|
|
|
target: test
|
2023-04-09 10:10:17 +00:00
|
|
|
|
|
|
|
changes:
|
|
|
|
name: test changed-files
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-25 13:52:55 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
2024-08-27 13:02:52 +00:00
|
|
|
uses: tj-actions/changed-files@v46
|
2023-12-25 13:52:55 +00:00
|
|
|
with:
|
|
|
|
since_last_remote_commit: true
|
|
|
|
separator: ","
|
|
|
|
|
|
|
|
- name: copy file to server
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.KEY }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: ${{ steps.changed-files.outputs.all_changed_files }}
|
|
|
|
target: test
|
2023-04-15 00:32:05 +00:00
|
|
|
|
|
|
|
target:
|
|
|
|
name: test target folder
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-25 13:52:55 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: copy file to server
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.KEY }}
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
source: tests/a.txt,tests/b.txt
|
|
|
|
target: foobar foobar 1234
|
2023-04-16 03:44:14 +00:00
|
|
|
|
|
|
|
multipleHost:
|
|
|
|
name: test Multiple Host
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-25 13:52:55 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: copy file to server
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
host: ${{ secrets.HOST }}:${{ secrets.PORT }},${{ secrets.HOST }}:${{ secrets.PORT }}
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
key: ${{ secrets.KEY }}
|
|
|
|
port: 1024
|
|
|
|
source: tests/a.txt,tests/b.txt
|
|
|
|
target: foobar
|