From 48a2cce2e85c91902d319a6ad20a25a4eb5b87d2 Mon Sep 17 00:00:00 2001 From: Diego Diaz Date: Thu, 26 Oct 2023 20:05:27 -0300 Subject: [PATCH] not versioned --- .github/workflows/semver.yml | 4 ++-- .github/workflows/semver_M.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/semver.yml b/.github/workflows/semver.yml index 34bb686..167312d 100644 --- a/.github/workflows/semver.yml +++ b/.github/workflows/semver.yml @@ -24,12 +24,12 @@ jobs: version_format: ${major}.${minor}.${patch} debug: true - name: Tagging - if: ${{ steps.increment_version.outputs.version_type == "minor" || steps.increment_version.outputs.version_type == "patch" }} + if: ${{ steps.increment_version.outputs.version_type == 'minor' || steps.increment_version.outputs.version_type == 'patch' }} run: | git tag ${{ steps.increment_version.outputs.version }} git push origin ${{ steps.increment_version.outputs.version }} - name: Release - if: ${{ steps.increment_version.outputs.version_type == "minor" || steps.increment_version.outputs.version_type == "patch" }} + if: ${{ steps.increment_version.outputs.version_type == 'minor' || steps.increment_version.outputs.version_type == 'patch' }} id: create_release uses: actions/create-release@v1 env: diff --git a/.github/workflows/semver_M.yml b/.github/workflows/semver_M.yml index f351f31..f9e8deb 100644 --- a/.github/workflows/semver_M.yml +++ b/.github/workflows/semver_M.yml @@ -26,12 +26,12 @@ jobs: version_format: ${major}.${minor}.${patch} debug: true - name: Tagging - if: ${{ steps.increment_version.outputs.version_type == "major" }} + if: ${{ steps.increment_version.outputs.version_type == 'major' }} run: | git tag ${{ steps.increment_version.outputs.version }} git push origin ${{ steps.increment_version.outputs.version }} - name: Release - if: ${{ steps.increment_version.outputs.version_type == "major" }} + if: ${{ steps.increment_version.outputs.version_type == 'major' }} id: create_release uses: actions/create-release@v1 env: