fix: revert superflouos implementation of center param for svg sampli… #214
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
name: Build | |
on: [push, pull_request] | |
jobs: | |
build_addon: | |
name: Build Blender ZIP add-on | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
installer-parallel: true | |
- name: Build add-on | |
run: etc/scripts/create_blender_dist.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: skybrush-studio-blender | |
path: ./dist/*.zip |