Skip to content

CI: Fix input name in CD workflow #5

CI: Fix input name in CD workflow

CI: Fix input name in CD workflow #5

Workflow file for this run

name: "CD"
on:
push:
branches:
- main
jobs:
tests:
uses: ./.github/workflows/tests.yml
type-check:
uses: ./.github/workflows/type-check.yml
build:
needs: [tests, type-check]
uses: ./.github/workflows/build.yml
with:
artifact-name: "lib-latest"
build-storybook:
needs: [tests, type-check]
uses: ./.github/workflows/build-storybook.yml
with:
artifact-name: "storybook-latest"
deploy-page:
needs: build-storybook
uses: ./.github/workflows/deploy-storybook.yml
with:
artifact-name: "storybook-latest"
publish-package:
needs: build
uses: ./.github/workflows/publish-package.yml

Check failure on line 30 in .github/workflows/CD.yml

View workflow run for this annotation

GitHub Actions / CD

Invalid workflow file

The workflow is not valid. .github/workflows/CD.yml (Line: 30, Col: 11): Input artifact-name is required, but not provided while calling. .github/workflows/CD.yml (Line: 32, Col: 21): Invalid input, package-name is not defined in the referenced workflow.
with:
package-name: "lib-latest"