Skip to content

Commit

Permalink
fix ecosystem-ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-shi committed Nov 26, 2024
1 parent 58cf7ac commit 9869c08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile
- id: short_sha
run: echo "x=${{ github.sha }}" | cut -c1-10 >> $GITHUB_OUTPUT
run: echo "x=${{ github.event.pull_request.head.sha }}" | cut -c1-10 >> $GITHUB_OUTPUT
- id: run_command
run: |
echo "x<<EOF" >> $GITHUB_ENV
pnpm run ecosystem-ci | grep -A999 -- '---- Jotai Ecosystem CI Results ----' >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo "x<<EOF" >> $GITHUB_OUTPUT
pnpm run ecosystem-ci | grep -A999 -- '---- Jotai Ecosystem CI Results ----' >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
env:
JOTAI_PKG: https://pkg.csb.dev/pmndrs/jotai/commit/${{ steps.short_sha.outputs.x }}/jotai
- uses: peter-evans/create-or-update-comment@v4
Expand Down

0 comments on commit 9869c08

Please sign in to comment.