423e734d09
* Added random console.writeline statement * and again * try with throw * feat: Automate example now using nuget * fix: update yaml automate action version * fix: Generate schema action step * fix: Logging in example * fix: Mark context run as success * fix: Upgrade of composite automate action * fix: Use correct env var * fix: Again... correct file path * chore: Reorganisation of project * fix: Lock file update * fix: No lock - no cache * fix: cd into project * fix: cd into path... in docker * fix: Copy isolated project folder instead of single files * fix: delete .idea folder * add .idea to gitignore * fix: Remove .idea again * fix: Cleaner kit initialisation * fix: Kit initialization * fix: dev-contaienr * fix: Run restore on creation * test: Docker build * feat: Recommended extensions and devcontainer sync * feat: added dotnet feature
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
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
|
|
env:
|
|
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
|
|
SPECKLE_AUTOMATE_URL: https://automate.speckle.dev
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.4.0
|
|
- name: Setup .NET Core SDK
|
|
uses: actions/setup-dotnet@v3.2.0
|
|
with:
|
|
dotnet-version: 7.x
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
- name: Extract functionInputSchema
|
|
id: extract_schema
|
|
working-directory: "SpeckleAutomateDotnetExample"
|
|
run: |
|
|
dotnet build
|
|
dotnet run generate-schema ${HOME}/functionSchema.json
|
|
cat ${HOME}/functionSchema.json
|
|
- name: Speckle Automate Function - Build and Publish
|
|
uses: specklesystems/speckle-automate-github-composite-action@0.6.7
|
|
with:
|
|
speckle_function_command: "dotnet SpeckleAutomateDotnetExample.dll"
|
|
speckle_automate_url: ${{ env.SPECKLE_AUTOMATE_URL }}
|
|
speckle_token: ${{ secrets.SPECKLE_FUNCTION_TOKEN }}
|
|
speckle_function_id: ${{ secrets.SPECKLE_FUNCTION_ID }}
|
|
speckle_function_input_schema_file_path: ${{ env.FUNCTION_SCHEMA_FILE_NAME }}
|