Merge branch 'main' into test #426
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
on: | |
push: | |
branches: | |
- 'test' | |
name: 'Deploy staging instance' | |
jobs: | |
deploy: | |
name: 'deployment' | |
runs-on: self-hosted | |
steps: | |
- name: 'Checkout source code' | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: 'Install dependencies' | |
uses: eaudeweb/[email protected] | |
with: | |
dev: false | |
php: /usr/bin/php81 | |
- name: 'Create release archive' | |
id: artifact | |
uses: eaudeweb/[email protected] | |
- name: 'Deploy release on the server' | |
uses: eaudeweb/[email protected] | |
with: | |
ssh_user: ${{ secrets.DEVEL_SSH_USER }} | |
ssh_host: ${{ secrets.DEVEL_SSH_HOST }} | |
ssh_key: ${{ secrets.DEVEL_SSH_KEY }} | |
release_id: ${{ steps.artifact.outputs.base }} | |
release_filename: ${{ steps.artifact.outputs.filename }} | |
project_dir: /var/www/html/devel.eu-parc.eu | |
artifacts_dir: /var/www/artifacts/devel.eu-parc.eu | |
settings_file: /var/www/config/devel.eu-parc.eu/settings.local.php | |
public_files_dir: /var/www/config/devel.eu-parc.eu/files | |
# env_file: /var/www/config/devel.eu-parc.eu/.env | |
robo_file: /var/www/config/devel.eu-parc.eu/robo.yml | |
database_dump_dir: /var/www/config/devel.eu-parc.eu/sync | |
artifacts_lifespan: 30 | |
- name: 'Update the Drupal instance' | |
id: release | |
uses: eaudeweb/[email protected] | |
with: | |
path: /var/www/html/devel.eu-parc.eu | |
- name: 'Discord notification on failed deploy' | |
if: failure() | |
run: > | |
curl -X POST -F | |
"content=:octagonal_sign: ${{ github.repository }} failed to deploy release **${{ github.ref_name }}** on <https://devel.eu-parc.eu>. | |
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
${{ secrets.DISCORD_WEBHOOK }} |