Skip to content

store schema to file #3

store schema to file

store schema to file #3

Workflow file for this run

name: 'build and deploy Speckle functions'
on:
push:
branches:
- main
jobs:
publish-automate-function-version: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET Core SDK
uses: actions/[email protected]
with:
dotnet-version: 7.x
cache: true
- name: Restore dependencies
run: dotnet restore --locked-mode
- name: Extract functionInputSchema
run: |
dotnet build
echo $(dotnet run generate-schema) > functionInputSchema
cat functionInputSchema
- name: Echo env
run: echo "$GITHUB_ENV"
- name: Speckle Automate Function - Build and Publish
uses: specklesystems/[email protected]
with:
speckle_automate_url: 'https://automate.speckle.dev'
speckle_token: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_PUBLISH_TOKEN }}
speckle_function_id: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_ID }}
speckle_function_input_schema: cat functionInputSchema
speckle_function_command: 'dotnet SpeckleAutomateDotnetExample.dll'