Skip to content

Fix mobile layout - scraper #47

Fix mobile layout - scraper

Fix mobile layout - scraper #47

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
# pull_request:
# branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ROLLUP_SKIP_NATIVE: 1
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
ref: main
# Fetch all history for all tags and branches
fetch-depth: 0
- name: Build and Extract Artifacts from Docker 🔧📦
run: |
make docker-export
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
force: true