Skip to content

fix rotation ctrl-drag by removing rotation input, group drag reconci… #7

fix rotation ctrl-drag by removing rotation input, group drag reconci…

fix rotation ctrl-drag by removing rotation input, group drag reconci… #7

Workflow file for this run

name: Deploy documentation to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["web"]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install and Build
run: |
npm ci
npm run build-docs
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './docs-site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2