Merge branch 'dev' of github.com:HE-Arc/Swissdle into dev #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Container | |
on: | |
push: | |
branches: | |
- 17_schedule_and_swagger | |
- main | |
- dev | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Deploy to Container | |
run: | | |
mkdir ~/.ssh | |
touch ~/.ssh/known_hosts | |
touch ~/.ssh/pkey | |
ssh-keyscan -p ${{ secrets.SECRET_PORT }} ${{ secrets.SECRET_HOST }} >> ~/.ssh/known_hosts | |
echo "${{ secrets.SECRET_PRIVATE_SSH }}" > ~/.ssh/pkey | |
chmod 600 ~/.ssh/pkey | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/pkey | |
ssh ${{ secrets.SECRET_USER }}@${{ secrets.SECRET_HOST }} -p ${{ secrets.SECRET_PORT }} "cd ./project/Swissdle && git pull origin main && cd backend-laravel && composer install && php artisan vendor:publish --provider "L5Swagger\L5SwaggerServiceProvider" && cd ../frontend-vue && npm install && npm run build && (crontab -l && crontab -r) || echo '* * * * * cd /home/laravel/project/Swissdle/backend-laravel && /usr/local/bin/php artisan schedule:run >> /home/laravel/project/Swissdle/cron.log' | crontab" |