Skip to content

ci: add branch trigger #1

ci: add branch trigger

ci: add branch trigger #1

Workflow file for this run

name: Changesets
on:
push:
branches: [main, feat/build]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
uses: ./.github/workflows/verify.yml

Check failure on line 14 in .github/workflows/changeset.yml

View workflow run for this annotation

GitHub Actions / Changesets

Invalid workflow file

The workflow is not valid. In .github/workflows/changeset.yml (Line: 14, Col: 11): Error from called workflow deltaDAO/nautilus/.github/workflows/verify.yml@252de0e1f841033a340b986f8f75dea71053fbe3 (Line: 30, Col: 3): The workflow must contain at least one job with no dependencies.
secrets: inherit
changesets:
name: Create version pull request
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Create Version Pull Request
uses: changesets/action@v1
with:
commit: 'chore: version package'
title: 'chore: version package'
version: npm run changeset:version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release:
name: Release
needs: verify
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
id-token: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Publish to NPM
uses: changesets/action@v1
with:
createGithubReleases: ${{ github.ref == 'refs/heads/main' }}
publish: npm run changeset:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# https://docs.npmjs.com/generating-provenance-statements
NPM_CONFIG_PROVENANCE: true