Skip to content

CI: Add variables to artifact names #18

CI: Add variables to artifact names

CI: Add variables to artifact names #18

Workflow file for this run

name: "CI"
on: [pull_request]
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
build-storybook:
needs: [tests, type-check]
uses: ./.github/workflows/build-storybook.yml

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 15, Col: 11): Input artifact-name is required, but not provided while calling. .github/workflows/CI.yml (Line: 17, Col: 22): Invalid input, ARTIFACT_NAME is not defined in the referenced workflow.
with:
ARTIFACT_NAME: "storybook-${{ github.head_ref }}"