Skip to content

Commit 56af482

Browse files
committed
add license and reference for rsync-deployments
1 parent 4b7038f commit 56af482

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

.github/actions/rsync-deploy/action.yml renamed to .github/actions/rsync-deployments/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# This implementation took inspiration from https://github.com/Burnett01/rsync-deployments/blob/7.1.0/action.yml
12
name: Rsync Deploy (local)
23
description: Upload a folder to a single remote destination via rsync over SSH.
34
inputs:

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
docker run --rm --volume "$PWD:/root/flink-kubernetes-operator" chesnay/flink-ci:java_8_11 bash -c "cd /root/flink-kubernetes-operator && ./.github/workflows/docs.sh"
5353
- name: Upload documentation
54-
uses: ./.github/actions/rsync-deploy
54+
uses: ./.github/actions/rsync-deployments
5555
with:
5656
path: docs/target/
5757
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/flink/flink-kubernetes-operator-docs-${{ env.flink_branch }}/
@@ -61,7 +61,7 @@ jobs:
6161
remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }}
6262
- name: Upload documentation alias
6363
if: env.flink_alias != ''
64-
uses: ./.github/actions/rsync-deploy
64+
uses: ./.github/actions/rsync-deployments
6565
with:
6666
path: docs/target/
6767
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/flink/flink-kubernetes-operator-docs-${{ env.flink_alias }}/

LICENSE.rsync-deployments

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2019-2022 Contention
4+
Copyright (c) 2019-2025 Burnett01
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

0 commit comments

Comments
 (0)