From f579143f9b42f6f1af8351ed53fa1c420d4fe916 Mon Sep 17 00:00:00 2001 From: Bob Date: Mon, 2 Aug 2021 16:55:14 -0400 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c6be6b6..a900659 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,21 +17,14 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 - name: Render and build OpenSCAD project uses: flat35hd99/eval-openscad@v0.2 with: command: 'openscad -o "tests/test.stl" "tests/test.scad"' - - - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. \ No newline at end of file + - 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 push