Skip to content

Commit

Permalink
fix: action failed when no changeset file
Browse files Browse the repository at this point in the history
  • Loading branch information
XGHeaven committed Nov 25, 2024
1 parent 6b3167a commit 0bcc80f
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,33 @@ on:
push:
branches:
- release/**
- fix/canary-ci-error # test 2

jobs:
check_changeset:
name: Check Changeset exists
runs-on: ubuntu-latest

steps:
- name: Checkout Branch
uses: actions/checkout@v4

- name: Check
run: test "$(ls -1 .changeset | wc -l)" -gt "2"

canary:
name: Canary
name: Publish Canary
runs-on: ubuntu-latest
needs: check_changeset
if: !contains(needs.check_changeset.outputs.status, 'failure')

strategy:
matrix:
node-version: [18]

steps:
- name: Checkout Branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
Expand All @@ -30,9 +44,6 @@ jobs:
- name: Setup
run: pnpm run setup

- name: Check changeset exists
run: test "$(ls -1 .changeset | wc -l)" -gt "2"

- name: Config npm
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
env:
Expand Down

0 comments on commit 0bcc80f

Please sign in to comment.