Skip to content

Services Deploy (all) #4

Services Deploy (all)

Services Deploy (all) #4

Workflow file for this run

name: Services Deploy (all)
run-name: 'Services Deploy [env: ${{ inputs.env }}]'
on:
workflow_dispatch:
inputs:
env:
description: 'Deployment target environment'
type: choice
required: true
options:
- dev
- test
- staging
- prod
permissions:
id-token: write
contents: read
jobs:
deploy-service:
runs-on: ubuntu-latest
environment: ${{ inputs.env }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build base image
id: build-base-image
run: |
: # Don't build the base image with NODE_ENV because it'll limit the packages that are installed
docker build -t terramatch-microservices-base:nx-base .
job-service:
uses: wri/terramatch-microservices/.github/workflows/deploy-service.yml@task/TM-1448-unified-deployment

Check failure on line 36 in .github/workflows/deploy-services.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-services.yml

Invalid workflow file

error parsing called workflow ".github/workflows/deploy-services.yml" -> "wri/terramatch-microservices/.github/workflows/deploy-service.yml@task/TM-1448-unified-deployment" (source branch with sha:a4a93e4e29cba1d11225f901dd2edadbb28f1257) : workflow is not reusable as it is missing a `on.workflow_call` trigger
with:
env: ${{ inputs.env }}
service: job-service
independent_run: true