Skip to content

Merge pull request #270 from proto-kit/feature/release-develop #1

Merge pull request #270 from proto-kit/feature/release-develop

Merge pull request #270 from proto-kit/feature/release-develop #1

name: Release NPM Packages
on:
workflow_dispatch:
push:
branches:
- develop
jobs:
release:

Check failure on line 10 in .github/workflows/release-develop.yml

View workflow run for this annotation

GitHub Actions / Release NPM Packages

Invalid workflow file

The workflow is not valid. .github/workflows/release-develop.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: "Install dependencies"
run: npm ci --workspaces --include-workspace-root --force
- name: "Build"
run: npm run build
- name: Run Lerna Release
run: npm run publish:canary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}