Skip to content

3.23.5

3.23.5 #1

Workflow file for this run

name: Deploy to production
on:
push:
tags:
- v*
jobs:
call-tests:
uses: ./.github/workflows/reusable-tests.yml
secrets: inherit
call-build:
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
needs: call-tests
call-publish-v2:
uses: ./.github/workflows/reusable-publish-v2.yml

Check failure on line 15 in .github/workflows/production.yml

View workflow run for this annotation

GitHub Actions / Deploy to production

Invalid workflow file

The workflow is not valid. .github/workflows/production.yml (Line: 15, Col: 11): Input build_run_id is required, but not provided while calling.
secrets: inherit
needs: call-build
with:
environment: production
call-publish-npm:
uses: ./.github/workflows/reusable-publish-npm.yml
secrets: inherit
needs: call-publish-v2