Add github workflows dings #4
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 STLs | |
on: [push] | |
jobs: | |
make: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install openscad | |
- run: make | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Zelti STLs | |
path: '*.stl' |