From 61703fef6e304d647386728132e15e602d6a2882 Mon Sep 17 00:00:00 2001 From: Thuc Pham <51660321+thucpn@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:39:53 +0700 Subject: [PATCH] fix release pipeline --- .github/workflows/release.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 48f6ff906..f15df0b46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,11 +15,6 @@ jobs: - name: Checkout Repo uses: actions/checkout@v4 - - uses: pnpm/action-setup@v3 - - - name: Install uv - uses: astral-sh/setup-uv@v3 - - name: Use Node.js uses: actions/setup-node@v4 with: @@ -32,14 +27,6 @@ jobs: - name: Install dependencies run: yarn --immutable - - name: Add auth token to .npmrc file - run: | - cat << EOF >> ".npmrc" - //registry.npmjs.org/:_authToken=$NPM_TOKEN - EOF - env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - name: Get changeset status id: get-changeset-status run: | @@ -54,7 +41,6 @@ jobs: with: commit: Release ${{ steps.get-changeset-status.outputs.new-version }} title: Release ${{ steps.get-changeset-status.outputs.new-version }} - # build package and call changeset publish publish: yarn release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}