Skip to content

a ‘hacky’ workaround #4

a ‘hacky’ workaround

a ‘hacky’ workaround #4

Workflow file for this run

name: 'build and deploy Speckle functions'
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
publish-automate-function-version: # make sure the action works on a clean machine without building
env:
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Restore dependencies
run: npm ci
- name: Extract functionInputSchema
id: extract_schema
run: |
npm run generateSchema ${HOME}/${{ env.FUNCTION_SCHEMA_FILE_NAME }}
- name: Speckle Automate Function - Build and Publish
uses: specklesystems/[email protected]
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_FILE_NAME }}
speckle_function_command: 'node index.js'