Changes in 4.0
This commit is contained in:
parent
c39ab06b30
commit
c269e19dd0
1 changed files with 17 additions and 7 deletions
24
README.md
24
README.md
|
@ -7,7 +7,7 @@ This GitHub Action deploys files in `GITHUB_WORKSPACE` to a remote folder via rs
|
||||||
|
|
||||||
Use this action in a CD workflow which leaves deployable code in `GITHUB_WORKSPACE`.
|
Use this action in a CD workflow which leaves deployable code in `GITHUB_WORKSPACE`.
|
||||||
|
|
||||||
The base-image is very small (Alpine+Cache) which results in faster deployments.
|
The underlaying base-image of the docker-image is very small (Alpine (no cache)) which results in fast deployments.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: rsync deployments
|
- name: rsync deployments
|
||||||
uses: burnett01/rsync-deployments@3.0
|
uses: burnett01/rsync-deployments@4.0
|
||||||
with:
|
with:
|
||||||
switches: -avzr --delete
|
switches: -avzr --delete
|
||||||
path: src/
|
path: src/
|
||||||
|
@ -71,7 +71,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: rsync deployments
|
- name: rsync deployments
|
||||||
uses: burnett01/rsync-deployments@3.0
|
uses: burnett01/rsync-deployments@4.0
|
||||||
with:
|
with:
|
||||||
switches: -avzr --delete --exclude="" --include="" --filter=""
|
switches: -avzr --delete --exclude="" --include="" --filter=""
|
||||||
path: src/
|
path: src/
|
||||||
|
@ -91,7 +91,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: rsync deployments
|
- name: rsync deployments
|
||||||
uses: burnett01/rsync-deployments@3.0
|
uses: burnett01/rsync-deployments@4.0
|
||||||
with:
|
with:
|
||||||
switches: -avzr --delete
|
switches: -avzr --delete
|
||||||
path: src/
|
path: src/
|
||||||
|
@ -102,7 +102,7 @@ jobs:
|
||||||
remote_key: ${{ secrets.DEPLOY_KEY }}
|
remote_key: ${{ secrets.DEPLOY_KEY }}
|
||||||
```
|
```
|
||||||
|
|
||||||
For maximum speed limit the checkout action (``actions/checkout@v1``) to a depth of 1:
|
For maximum speed limit the checkout action (``actions/checkout@v1``) to a depth of 2:
|
||||||
|
|
||||||
```
|
```
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -111,9 +111,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
fetch-depth: 2
|
||||||
- name: rsync deployments
|
- name: rsync deployments
|
||||||
uses: burnett01/rsync-deployments@3.0
|
uses: burnett01/rsync-deployments@4.0
|
||||||
with:
|
with:
|
||||||
switches: -avzr --delete
|
switches: -avzr --delete
|
||||||
path: src/
|
path: src/
|
||||||
|
@ -126,6 +126,16 @@ jobs:
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Version 3.0
|
||||||
|
|
||||||
|
Looking for version 3.0?
|
||||||
|
|
||||||
|
Check here: https://github.com/Burnett01/rsync-deployments/tree/3.0
|
||||||
|
|
||||||
|
Version 3.0 uses the ``alpine:latest`` base-image directly.<br>
|
||||||
|
Consider upgrading to 4.0 that uses a docker-image ``drinternet/rsync:1.0.1`` that is<br>
|
||||||
|
based on ``alpine:latest``and heavily optimized for rsync.
|
||||||
|
|
||||||
## Version 2.0
|
## Version 2.0
|
||||||
|
|
||||||
Looking for version 2.0?
|
Looking for version 2.0?
|
||||||
|
|
Loading…
Reference in a new issue