-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (47 loc) · 1.38 KB
/
makefile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Build Models
on:
push:
pull_request:
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: Extract Tag Name
if: startsWith(github.ref, 'refs/tags/v')
id: tagname
run: echo "tagname=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
shell: bash
- name: Zip STL files
if: startsWith(github.ref, 'refs/tags/v')
run: |
mv stl stl-LDraw-${{ steps.tagname.outputs.tagname }}
zip -r stl-LDraw-${{ steps.tagname.outputs.tagname }}.zip stl-LDraw-${{ steps.tagname.outputs.tagname }}
- name: release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: |
stl-LDraw-${{ steps.tagname.outputs.tagname }}.zip
token: ${{ secrets.MY_SECRET }}