4 Commits
v2 ... v3

Author SHA1 Message Date
66381d7312 remove things 2025-02-19 14:22:34 +01:00
801a36fe2d merge README 2025-02-19 14:20:59 +01:00
8aacb87d31 update README version 2025-02-19 14:19:52 +01:00
3b39e2875a add -p flag to mkdir command 2025-02-19 14:17:30 +01:00
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ This is a composite Gitea Action (Linux runner) for deploying repository content
with:
fetch-depth: 0
- name: "Deploy"
uses: https://code.klank.school/riviera/actions-file-deployer@v2
uses: https://code.klank.school/riviera/actions-file-deployer@v3
with:
remote-protocol: "sftp"
remote-host: "ftp.example.com"
@ -65,7 +65,7 @@ jobs:
with:
fetch-depth: 0
- name: "Deploy"
uses: https://code.klank.school/riviera/actions-file-deployer@v2
uses: https://code.klank.school/riviera/actions-file-deployer@v3
with:
remote-protocol: "sftp"
remote-host: "ftp.example.com"

View File

@ -198,7 +198,7 @@ runs:
echo "::group::Configurations"
config_ssh=~/.ssh/config
mkdir ~/.ssh && echo -e "ExitOnForwardFailure=yes\nStrictHostKeyChecking=no" > ${config_ssh} && chmod 600 ${config_ssh} && echo "File created: ${config_ssh}"
mkdir -p ~/.ssh && echo -e "ExitOnForwardFailure=yes\nStrictHostKeyChecking=no" > ${config_ssh} && chmod 600 ${config_ssh} && echo "File created: ${config_ssh}"
[ "${{inputs.debug}}" == "true" ] && cat ${config_ssh}
show_hr