From df4686974eafda2ebc048e6bce16acf8b96eeac4 Mon Sep 17 00:00:00 2001 From: Bob Date: Mon, 2 Aug 2021 17:13:58 -0400 Subject: [PATCH] git add -A --- .github/workflows/test.yml | 7 +++++-- tests/{ => fixtures}/test.stl | 0 2 files changed, 5 insertions(+), 2 deletions(-) rename tests/{ => fixtures}/test.stl (100%) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a900659..f097e54 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,9 +22,12 @@ jobs: - name: Render and build OpenSCAD project uses: flat35hd99/eval-openscad@v0.2 with: - command: 'openscad -o "tests/test.stl" "tests/test.scad"' + command: | + echo "where does this even go" + openscad -o "tests/test.stl" "tests/test.scad" - run: | git config --global user.name 'KeyV2 GHA Bot' git config --global user.email 'keyv2-gha-bot@users.noreply.github.com' - git commit -am "Update test stls" + git add -A + git commit -m "Update test stls" git push diff --git a/tests/test.stl b/tests/fixtures/test.stl similarity index 100% rename from tests/test.stl rename to tests/fixtures/test.stl