Skip to content

Remove statistics entrypoint. #34

Remove statistics entrypoint.

Remove statistics entrypoint. #34

Workflow file for this run

name: Deploy
on:
push:
branches: [ main ]
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
timeout-minutes: 2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: yarn install --immutable
- name: Build site
run: yarn build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'dist'
deploy:
needs: build
timeout-minutes: 2
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1