Ensure rsync available in deploy workflow
Deploy to Development and Production / deploy (push) Successful in 13s
Details
Deploy to Development and Production / deploy (push) Successful in 13s
Details
This commit is contained in:
parent
035ecdee43
commit
557c1d341f
|
|
@ -17,6 +17,14 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Preveri, ali je rsync nameščen, sicer ga namesti
|
||||
- name: Ensure rsync is installed
|
||||
run: |
|
||||
if ! command -v rsync >/dev/null; then
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y rsync
|
||||
fi
|
||||
|
||||
# Ta korak se vedno izvede - priprava SSH ključa
|
||||
- name: Setup SSH
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in New Issue