Skip to content

Merge branch '28391-learning-materials' into test #553

Merge branch '28391-learning-materials' into test

Merge branch '28391-learning-materials' into test #553

Workflow file for this run

on:
push:
branches:
- 'test'
name: 'Deploy DEVEL instance'
jobs:
create_release_archive:
name: 'Create release archive'
runs-on:
labels: 'drupal-runner-v2'
outputs:
release_id: ${{ steps.artifact.outputs.base }}
release_filename: ${{ steps.artifact.outputs.filename }}
steps:
- name: 'Checkout source code'
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: 'Setup nodejs'
uses: actions/setup-node@v3
with:
node-version-file: 'web/themes/custom/parc/.nvmrc'
- name: 'Install dependencies'
uses: eaudeweb/[email protected]
with:
dev: false
php: /usr/bin/php8.2
- name: 'Create release archive'
id: artifact
uses: eaudeweb/[email protected]
deploy_release:
name: 'Deploy release on the server'
runs-on:
labels: 'drupal-runner-v2'
needs: create_release_archive
steps:
- 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: ${{ needs.create_release_archive.outputs.release_id }}
release_filename: ${{ needs.create_release_archive.outputs.release_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
update_instance:
name: 'Update Drupal instance'
runs-on:
labels: 'drupal-runner-v2'
needs: deploy_release
steps:
- name: 'Update the Drupal instance'
id: release
uses: eaudeweb/[email protected]
with:
path: /var/www/html/devel.eu-parc.eu
notify_failure:
name: 'Notify on failure'
runs-on:
labels: 'drupal-runner-v2'
needs: [create_release_archive, deploy_release, update_instance]
if: failure()
steps:
- name: 'Discord notification on failed deploy'
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 }}