Skip to content

Merge pull request #203 from FacturAPI/FAC-1484/search-receipt-by-inv… #193

Merge pull request #203 from FacturAPI/FAC-1484/search-receipt-by-inv…

Merge pull request #203 from FacturAPI/FAC-1484/search-receipt-by-inv… #193

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
paths: [website/**]
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: yarn
cache-dependency-path: website/yarn.lock
- name: Build website
working-directory: website
run: |
yarn install --frozen-lockfile
yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.GH_ACTIONS_DEPLOY_KEY }}
publish_dir: ./website/build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com