Skip to content

publish

publish #179

Workflow file for this run

name: publish
on:
push:
tags:
- 'v*.*.*'
workflow_dispatch: # Allows manual trigger of the workflow
inputs:
custom_version: # Optional input for a custom version
description: 'Custom version to publish (e.g., v1.2.3) -- only edit if you know what you are doing'
required: false
type: string
token:
description: 'Personal Access Token'
required: true
default: ""
type: string
workflow_call: # Allows trigger the workflow from other workflow
inputs:
custom_version: # Optional input for a custom version
description: 'Custom version to publish (e.g., v1.2.3) -- only edit if you know what you are doing'
required: false
type: string
token:
description: 'Personal Access Token'
required: true
default: ""
type: string
jobs:
# publish-python-sdk:
# uses: ./.github/workflows/publish_python_sdk.yml
# secrets: inherit
# with:
# custom_version: ${{ github.event.inputs.custom_version }}
# token: ${{ github.event.inputs.token }}
build-publish-docker-images:

Check failure on line 38 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / publish

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 38, Col: 3): The workflow must contain at least one job with no dependencies.
uses: ./.github/workflows/publish_images.yml
needs: [ publish-python-sdk ]
secrets: inherit
with:
custom_version: ${{ github.event.inputs.custom_version }}
token: ${{ github.event.inputs.token }}
publish-helm-charts:
uses: ./.github/workflows/publish_helm_charts.yml
needs: [ publish-python-sdk ]
secrets: inherit
with:
custom_version: ${{ github.event.inputs.custom_version }}
token: ${{ github.event.inputs.token }}
publish-java-sdk:
uses: ./.github/workflows/publish_java_sdk.yml
needs: [ publish-python-sdk ]
secrets: inherit
with:
custom_version: ${{ github.event.inputs.custom_version }}
token: ${{ github.event.inputs.token }}