Skip to content

Update export_solid.py #28

Update export_solid.py

Update export_solid.py #28

Workflow file for this run

# .github/workflows/pages.yml
name: Deploy GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read # to clone the repo
pages: write # to push to GitHub Pages
id-token: write # to authenticate the deployment
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: docs
- id: deployment
uses: actions/deploy-pages@v4