Skip to content

Build and Deploy API to Review #3

Build and Deploy API to Review

Build and Deploy API to Review #3

name: Build and Deploy to Review
on:
workflow_dispatch:
inputs:
commit:
description: "Leave blank to use current HEAD, or provide an override commit SHA"
type: string
required: false
jobs:
test:
name: Test
uses: ./.github/workflows/test.yml

Check failure on line 13 in .github/workflows/build_and_deploy_review.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_and_deploy_review.yml

Invalid workflow file

error parsing called workflow ".github/workflows/build_and_deploy_review.yml" -> "./.github/workflows/test.yml" : failed to fetch workflow: workflow was not found.
deploy:
name: Deploy
needs: [test]
uses: ./.github/workflows/build_and_deploy_generic.yml
with:
commit: ${{ inputs.commit }}
environment: review
secrets: inherit