1
0
This commit is contained in:
Filip Rojek 2023-12-07 20:22:56 +01:00
parent 13524a6174
commit 6e54f3122d

View File

@ -23,8 +23,13 @@ jobs:
run: |
zola build
- name: Set Destination Folder
run: echo "DEST_FOLDER=$(if [ ${{ github.ref == 'refs/heads/master' }} ]; then echo '/srv/www/cz/pkmples/www'; else echo '/srv/www/cz/pkmples/dev'; fi)" >> $GITHUB_ENV
- name: Set Destination Folder if MASTER
if: ${{ github.ref == 'refs/heads/master' }}
run: echo "DEST_FOLDER=/srv/www/cz/pkmples/www" >> $DEST_FOLDER
- name: Set Destination Folder if DEV
if: ${{ github.ref == 'refs/heads/dev' }}
run: echo "DEST_FOLDER=/srv/www/cz/pkmples/dev" >> $DEST_FOLDER
- name: Deploy to server
uses: AEnterprise/rsync-deploy@v1.0.2