Skip to content

Commit 77852e7

Browse files
committed
add build job to ci workflow
1 parent 9beb4ef commit 77852e7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ name: Continuous Integration
33
on: [push]
44

55
jobs:
6+
build:
7+
name: "Build"
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- name: Build library ZIP
12+
run: |
13+
mkdir BlenderServoAnimation
14+
cp -R src examples library.properties README.md LICENSE BlenderServoAnimation
15+
zip -r blender_servo_animation_arduino_library BlenderServoAnimation
16+
- name: Archive library ZIP
17+
uses: actions/upload-artifact@v3
18+
with:
19+
name: blender_servo_animation_arduino_library.zip
20+
path: |
21+
blender_servo_animation_arduino_library.zip
622
lint:
723
name: "Lint"
824
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)