Skip to content

Trigger build

Trigger build #1

Workflow file for this run

on:
push:
# branches:
# - main
# paths:
# - 'packages/cli/**'
jobs:
publish:

Check failure on line 9 in .github/workflows/publish-cli.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-cli.yml

Invalid workflow file

The workflow is not valid. .github/workflows/publish-cli.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
name: Publish
needs: [test]
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Get version
id: get_version
run: |
CURRENT_VERSION=$(node -p "require('./packages/cli/package.json').version")
echo "version=${CURRENT_VERSION}" >> $GITHUB_OUTPUT
echo "new_version=$(npx semver ${CURRENT_VERSION} -i patch)" >> $GITHUB_OUTPUT
- name: Update version
run: |
cd packages/cli
npm version ${{ steps.get_version.outputs.new_version }} --no-git-tag-version
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: v${{ steps.get_version.outputs.new_version }}
name: Release v${{ steps.get_version.outputs.new_version }}
generate_release_notes: true
- name: Setup NPM Auth
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Publish to NPM
run: cd packages/cli && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}