Skip to content

Merge pull request #237 from actier-luchta/issue/236 #122

Merge pull request #237 from actier-luchta/issue/236

Merge pull request #237 from actier-luchta/issue/236 #122

name: Deploy histoire with GitHub Pages
on:
# Runs on pushes targeting the default branch
push:
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: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Setup Node
uses: actions/setup-node@v3.6.0
with:
node-version: '18'
- uses: actions/cache@v3.2.3
with:
path: ~/.npm
key: node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
node-
- name: Install and Build
run: |
npm ci
npm run story:build
- name: .nojekyll
run: touch .histoire/dist/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: .histoire/dist/
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1