major refactoring for printability #21
Workflow file for this run
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 Models | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
release: | |
types: [created] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OpenSCAD | |
run: sudo apt-get install -y openscad | |
- uses: actions/checkout@v4 | |
- name: Cache STL Files | |
id: cache-stl | |
uses: actions/cache@v4 | |
with: | |
path: cache | |
key: stlcache-${{ runner.os }}-${{ github.run_id }} | |
restore-keys: | | |
stlcache-${{ runner.os }} | |
- name: read cache | |
run: .github/workflows/getcache | |
- name: build | |
run: make -j $(nproc) | |
- name: create cache | |
run: .github/workflows/mkcache | |
- name: Publish STL files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: stl-files | |
path: "*.stl" | |
- name: Zip STL files | |
if: github.event_name == 'release' | |
run: | | |
mkdir soLDraw-${{ github.event.release.tag_name }} | |
cp -a *.stl soLDraw-${{ github.event.release.tag_name }}/ | |
zip -r soLDraw-${{ github.event.release.tag_name }}.zip soLDraw-${{ github.event.release.tag_name }} | |
- name: Upload ZIP Artifact to Release | |
if: github.event_name == 'release' | |
run: | | |
upload_url="${{ github.event.release.upload_url }}" | |
upload_url="${upload_url/\{?name,label\}/?name=soLDraw-${{ github.event.release.tag_name }}.zip}" | |
curl -s -X POST -H "Authorization: Bearer ${{ secrets.MY_SECRET }}" -H "Content-Type: application/octet-stream" --data-binary "@soLDraw-${{ github.event.release.tag_name }}.zip" "$upload_url" |