develop #206

Merged
samuel-p merged 13 commits from develop into main 2023-12-06 02:22:52 +00:00
Showing only changes of commit c6c3b3426c - Show all commits

View file

@ -33,7 +33,9 @@ jobs:
- github.ref == 'refs/heads/develop'
steps:
- uses: actions/download-artifact@v3
- name: Install Dependencies
run: which lftp || ( apk --update add lftp )
- name: Deploy English Version
run: echo "deploy dev en"
run: lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/en/ dev.samuel-philipp.com/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
- name: Deploy German Version
run: echo "deploy dev de"
run: lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/de/ dev.samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST