From f3284d637d247aeb5f447adb2cca51de3d0e11a3 Mon Sep 17 00:00:00 2001 From: dskvr Date: Tue, 10 Sep 2024 13:05:22 +0200 Subject: [PATCH] remove versioning from wf --- .github/workflows/publish-package.yml | 42 --------------------------- 1 file changed, 42 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index d6355a22..567be689 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -12,49 +12,7 @@ on: - '.github/workflows/publish-package.yml' jobs: - versioning: - runs-on: ubuntu-latest - outputs: - should_publish: ${{ steps.publish_check.outputs.should_publish }} - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Install Dependencies - run: yarn install --frozen-lockfile - - - name: Check for Changeset Version Bump - id: publish_check - run: | - # Check if there are changesets that need version bumping - if yarn changeset status; then - echo "should_publish=true" >> "$GITHUB_OUTPUT" - else - echo "should_publish=false" >> "$GITHUB_OUTPUT" - fi - - - name: Version Packages with Changeset - if: steps.publish_check.outputs.should_publish == 'true' - run: yarn changeset version - - - name: Commit Version Changes - if: steps.publish_check.outputs.should_publish == 'true' - run: | - git config --global user.name "GitHub Actions" - git config --global user.email "actions@github.com" - git add . - git commit -m "Version bumped by Changesets" - git push origin next - publish: - needs: versioning - if: needs.versioning.outputs.should_publish == 'true' runs-on: ubuntu-latest strategy: fail-fast: false