update api #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ 'main' ] | |
workflow_dispatch: | |
inputs: | |
version: | |
description: | | |
The version of the project to build. Example: `1.0.3`. | |
If not provided, a development build with a version name | |
based on the branch name will be built. Otherwise, a release | |
build with the provided version will be built. | |
required: false | |
jobs: | |
build: | |
uses: viash-io/viash-actions/.github/workflows/build.yaml@v6 | |
with: | |
version: ${{ github.event.inputs.version }} |