From fc28036ae6db9cabd8c2165a1d6d8baf14b1010b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Jedlicska?= Date: Fri, 11 Aug 2023 15:52:02 +0200 Subject: [PATCH] try the simple way --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index de3c67f..2b9447a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,13 +23,13 @@ jobs: id: extract_schema run: | dotnet build - echo $(dotnet run generate-schema) > ${{ env.FUNCTION_SCHEMA_PATH }} - cat ${{ env.FUNCTION_SCHEMA_PATH }} + echo $(dotnet run generate-schema) > functionSchema.json + cat functionSchema.json - name: Speckle Automate Function - Build and Publish uses: specklesystems/speckle-automate-github-composite-action@0.3.1 with: speckle_automate_url: 'https://automate.speckle.dev' speckle_token: ${{ secrets.SPECKLE_FUNCTION_TOKEN }} speckle_function_id: ${{ secrets.SPECKLE_FUNCTION_ID }} - speckle_function_input_schema_file_path: ${{ env.FUNCTION_SCHEMA_PATH }} + speckle_function_input_schema_file_path: functionSchema.json speckle_function_command: 'dotnet SpeckleAutomateDotnetExample.dll'