Skip to content

content/en/lasuite/index.md: Add screenshot #447

content/en/lasuite/index.md: Add screenshot

content/en/lasuite/index.md: Add screenshot #447

Workflow file for this run

name: Deploy code.gouv.fr website to preproduction
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Build with Eleventy
run: |
npm install
npm run build-production
- name: Index site for pagefind
run: npm run postbuild
- 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 }}
REMOTE_USER: ${{ secrets.REMOTE_USER }}
TARGET: ${{ secrets.REMOTE_TARGET }}