From ea7a7eff1366ca4f4c11d16b3ed4b3fa0258af89 Mon Sep 17 00:00:00 2001 From: Shad Sharma Date: Tue, 9 Jan 2024 13:45:29 -0800 Subject: [PATCH] Check if version is bumped instead of auto-bumping --- .github/workflows/deploy.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 9974689..8f0c249 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -10,6 +10,8 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Ensure version is bumped + uses: del-systems/check-if-version-bumped@v1 - name: Use Node.js 20.x uses: actions/setup-node@v2 with: @@ -23,12 +25,6 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: phips28/gh-action-bump-version@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - major-wording: "MAJOR:" - minor-wording: "MINOR:" - uses: actions/setup-node@v2 with: node-version: 20.x