From b484c732c80f6d7b23bcf3f9e7c2bc5352689e5f Mon Sep 17 00:00:00 2001 From: Michal Baumgartner Date: Tue, 9 Dec 2025 17:09:27 +0100 Subject: [PATCH] chore: Remove unused GitHub action --- .github/workflows/release.yml | 62 ----------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index ae1d8e7629..0000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: Release - -on: - push: - branches: - - main - -jobs: - release: - name: ${{ matrix.channel }} - runs-on: ubuntu-latest - strategy: - max-parallel: 1 - matrix: - channel: - - latest - - dev - - steps: - - name: Checkout repo - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Setup node - uses: actions/setup-node@v2 - with: - node-version: 16.x - cache: yarn - registry-url: https://registry.npmjs.org - key: node16 - - - name: Install dependencies - run: yarn - - - name: Prepare release - run: yarn prerelease - - # https://github.com/changesets/action - - name: Create release pull request or Publish to npm - if: matrix.channel == 'latest' - uses: changesets/action@master - with: - # defined in package.json#scripts - version: yarn changesetversion - publish: yarn changeset publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - YARN_ENABLE_IMMUTABLE_INSTALLS: false - - # https://github.com/atlassian/changesets/blob/master/docs/snapshot-releases.md - - name: Release to @dev channel - if: matrix.channel == 'dev' - run: | - yarn changeset version --snapshot - yarn changeset publish --tag dev - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }}