-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 1.04 KB
/
Abfallbehaelter.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
name: create Abfallbehaelter
on:
workflow_dispatch:
jobs:
defaultAction:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Install Blender
- name: Install Blender
run: sudo snap install blender --classic
# install gitpython
- name: install gitpython
run: pip install gitpython
# export .obj
- name: export .obj
run: blender --background --python utilities/scripts/exportOBJ_Abfallbehaelter.py
# render Thumbnails
- name: Render Thumbnails
run: blender --background --python utilities/scripts/renderThumbnail_Abfallbehaelter.py
# create Readme
- name: create Readme
run: python utilities/scripts/createReadme_Abfallbehaelter.py
# commit changes
- name: commit changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git pull
git add .
git commit -m "generated"
git push