Skip to content

Commit

Permalink
not versioned
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoandresdiazespinoza committed Oct 26, 2023
1 parent 6b2579e commit 48a2cce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semver_M.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 48a2cce

Please sign in to comment.