Skip to content

Merge branch 'main' into production #28

Merge branch 'main' into production

Merge branch 'main' into production #28

Workflow file for this run

name: Deploy code.gouv.fr website to production
on:
push:
branches: ["production"]
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build with Eleventy
run: |
npm install
npm run build-production
- name: Index site for pagefind
run: npm run postbuild
- uses: actions/upload-artifact@v3
with:
name: site
path: _site/
# Deployment job
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v3
with:
name: site
path: _site/
- name: Deploy to Server
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} # must be in PEM format
ARGS: "-av --delete"
SOURCE: _site/
REMOTE_HOST: ${{ secrets.REMOTE_HOST_PROD }}
REMOTE_USER: ${{ secrets.REMOTE_USER_PROD }}
TARGET: ${{ secrets.REMOTE_TARGET_PROD }}