#2032 #2033 Added Dawn of the Infinite NPC portraits #1575
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
# Dummy commits done: 1 | |
name: Mapping Deploy | |
on: | |
push: | |
branches: development | |
jobs: | |
deploy-mapping: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update mapping environment | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.DEPLOY_USERNAME }} | |
key: ${{ secrets.DEPLOY_PRIVATE_KEY }} | |
script: cd /var/www/html/keystone.guru.mapping/; | |
php artisan readonly:enable && | |
php artisan db:backup && | |
php artisan mapping:sync --force=true; | |
php artisan up; | |
php artisan down --render="errors::503" --retry 60; | |
php artisan environment:updateprepare mapping && | |
php artisan environment:update mapping; | |
php artisan readonly:disable && | |
php artisan up |