From 44cfb9d37e8d8f8421c1786f8402f1af3390df1d Mon Sep 17 00:00:00 2001 From: exo-mv Date: Fri, 27 Feb 2026 14:18:43 -0500 Subject: [PATCH] chore: rm CI release workflow --- .github/workflows/build-npm.yml | 39 --------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/build-npm.yml diff --git a/.github/workflows/build-npm.yml b/.github/workflows/build-npm.yml deleted file mode 100644 index 00edea68cc..0000000000 --- a/.github/workflows/build-npm.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Create a release -on: workflow_dispatch - -jobs: - build: - runs-on: ubuntu-latest - environment: release - permissions: - contents: write # to be able to publish a GitHub release - issues: write # to be able to comment on released issues - pull-requests: write # to be able to comment on released pull requests - id-token: write # to enable use of OIDC for npm provenance - env: - WORKING_DIRECTORY: ./ - concurrency: - group: npm-${{ github.ref }} - cancel-in-progress: true - steps: - - name: checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: - submodules: recursive - - - name: Setup - uses: ./.github/actions/setup - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - - - name: Build package and documentation - run: yarn build - - - name: Upgrade npm for OIDC support - run: npm install -g npm@11 - - - name: Semantic Release - working-directory: packages/skia - run: yarn release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}