Skip to content

CI: Extract publish and pages to their own workflow (#15) #4

CI: Extract publish and pages to their own workflow (#15)

CI: Extract publish and pages to their own workflow (#15) #4

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

Check failure on line 25 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: 25, Col: 11): Input artifact-name is required, but not provided while calling. .github/workflows/CD.yml (Line: 27, Col: 22): Invalid input, artifact_name is not defined in the referenced workflow.
with:
artifact_name: "storybook-latest"
publish-package:
needs: build
uses: ./.github/workflows/publish-package.yml
with:
package-name: "lib-latest"