Skip to content

fix release pipeline #11

fix release pipeline

fix release pipeline #11

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build:
uses: ./.github/workflows/build.yml
secrets: inherit
release:
needs:

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

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 13, Col: 5): Required property is missing: runs-on
- build
steps:
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
commit: 'chore: release package(s)'
title: 'chore: release package(s)'
version: yarn version
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}