requirements.txt -> switch to dev version of build123d to fix pickle… #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: { } | |
jobs: | |
build-models: | |
name: "Build demo models" | |
runs-on: "ubuntu-latest" | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
contents: "read" # to read the repository contents | |
pull-requests: "read" # to read pull requests | |
pages: "write" # to deploy to Pages | |
id-token: "write" # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: "github-pages" | |
# url: "${{ steps.deployment.outputs.page_url }}" | |
# WARNING: You also need to go to Settings > Pages and set the source to "GitHub Actions" | |
steps: | |
# Checkout your repository | |
- uses: "actions/checkout@v4" | |
# Optional: Install your preferred Python version and set up caches | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
# Optional: Install your preferred Python packages | |
- run: "pip install -r requirements.txt" | |
# Run the action | |
- uses: Yeicor/ocp-action@v3.1.3 | |
with: | |
scripts: "examples/birdhouse.py|examples/OCC_bottle.py|examples/TTT/ttt-t-05-19b_WEDGE_b123d.py|examples/TTT/ttt-t2-20-y3_FLANGE_b123d.py|examples/diamond_bull.py" | |
formats: "STL|STEP|GLTF" | |
tolerance: "0.001" | |
angular_tolerance: "0.1" | |
website: "." | |
website-screenshot: "true" |