From af550545bbc18bb71b86cc3dadbea89ab479e804 Mon Sep 17 00:00:00 2001 From: Lukas Oppermann Date: Mon, 15 Jul 2024 10:22:16 +0200 Subject: [PATCH] Delete .github/workflows/release.yml --- .github/workflows/release.yml | 52 ----------------------------------- 1 file changed, 52 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 3b1f61a..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Release - -on: - # workflow_run: - # workflows: [Figma release] - # types: - # - completed - # pull_request: - # branches: - # - main - # types: [closed] - push: - branches: - - main - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - version: - name: Version - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v2 - - - name: Setup Node.js 18.x - uses: actions/setup-node@v2 - with: - node-version: 18.x - - - name: Install Dependencies - run: npm i - - - name: Creating .npmrc - run: | - cat << EOF > "$HOME/.npmrc" - //npm.pkg.github.com/:_authToken=$NPM_TOKEN - EOF - env: - NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Create Release Pull Request or create GitHub release - id: changesets - uses: changesets/action@e9cc34b540dd3ad1b030c57fd97269e8f6ad905a - with: - # This expects you to have a script called release which does a build for your packages and calls changeset publish - publish: yarn release - title: Next release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}