mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-04 03:09:45 +00:00
Merge pull request #447 from revarbat/revarbat_dev
Fix for empty commit in workflow.
This commit is contained in:
commit
3356cb3b1f
2 changed files with 3 additions and 5 deletions
6
.github/workflows/docsgen.yml
vendored
6
.github/workflows/docsgen.yml
vendored
|
@ -41,8 +41,7 @@ jobs:
|
|||
git config user.name github-actions
|
||||
git config user.email github-actions@github.com
|
||||
git add --all
|
||||
git commit -m "Wiki docs auto-regen."
|
||||
git push
|
||||
git commit -m "Wiki docs auto-regen." && git push || true
|
||||
|
||||
- name: Bump Release Version
|
||||
run: |
|
||||
|
@ -51,6 +50,5 @@ jobs:
|
|||
git config user.name github-actions
|
||||
git config user.email github-actions@github.com
|
||||
git add version.scad
|
||||
git commit -m "Bump release version."
|
||||
git push
|
||||
git commit -m "Bump release version." && git push || true
|
||||
|
||||
|
|
|
@ -1209,7 +1209,7 @@ module worm(
|
|||
// worm_gear(pitch=5, teeth=36, worm_diam=30, worm_starts=4);
|
||||
// Example: Metric Worm Gear
|
||||
// worm_gear(mod=2, teeth=32, worm_diam=30, worm_starts=1);
|
||||
// Example(Anim,Frames=4,FrameMS=125,VPD=225,VPT=[-15,0,0]): Meshing Worm and Gear
|
||||
// Example(Anim,Frames=4,FrameMS=125,VPD=220,VPT=[-15,0,0]): Meshing Worm and Gear
|
||||
// $fn=36;
|
||||
// pitch = 5; starts = 4;
|
||||
// worm_diam = 30; worm_length = 50;
|
||||
|
|
Loading…
Reference in a new issue