Skip to content

Merge pull request #314 from NucleoidAI/add-new-workflow #167

Merge pull request #314 from NucleoidAI/add-new-workflow

Merge pull request #314 from NucleoidAI/add-new-workflow #167

Workflow file for this run

name: IDE
on:
push:
branches: [main]
tags:
- 'v*'
workflow_dispatch:
inputs:
environment:
description: 'Environment to deploy'
required: true
type: choice
options:
- land
- live
default: 'land'
jobs:
IDE:
uses: ./.github/workflows/deploy.yml

Check failure on line 19 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

error parsing called workflow ".github/workflows/deploy.yml" -> "./.github/workflows/deploy.yml" (source branch with sha:9babd08bb3829ff6cd63ae03a476bad5d02eafe0) : workflow is not reusable as it is missing a `on.workflow_call` trigger
with:
service_name: ide.nucleoid.com
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'live' || github.event.inputs.environment || 'land' }}
context_path: .
install_dependencies: true
dependency_path: .
run_lint: true
run_build: true
setup_config: true
secrets:
DOCKER_ACCESS_TOKEN: ${{ secrets.DOCKER_ACCESS_TOKEN }}