From 673e5025755b9a2eb81c73f9f6dcc63159aaaf11 Mon Sep 17 00:00:00 2001 From: Keiichiro Amemiya Date: Sun, 12 Jan 2025 23:51:32 +0100 Subject: [PATCH] fix CI --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 31dbab1..3f039ba 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,6 +36,7 @@ jobs: if: github.event_name == 'push' && github.ref_name == 'main' steps: - uses: actions/checkout@v4 + - run: corepack enable - uses: actions/setup-node@v4 with: node-version: 22.11.0 @@ -43,3 +44,5 @@ jobs: - run: pnpm install --frozen-lockfile - run: pnpm version 0.0.0-alpha.${{ github.sha}} --no-git-tag-version - run: pnpm publish --tag alpha + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}