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 0ca2ac1 commit 6b2579e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
Deploy:
name: First 1
name: Minor/Patch release
runs-on: ubuntu-20.04
steps:
- name: checkout
Expand All @@ -24,10 +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" }}
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" }}
id: create_release
uses: actions/create-release@v1
env:
Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/semver_M.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Semver

on:
push:
branches:
- main
- CHANGELOG.md
-
jobs:
Deploy:
name: Major release
runs-on: ubuntu-20.04
if
steps:
- name: checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: increment version
id: increment_version
uses: paulhatch/[email protected]
with:
tag_prefix: ""
major_pattern: (MAJOR)
minor_pattern: (MINOR)
version_format: ${major}.${minor}.${patch}
debug: true
- name: Tagging
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" }}
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.increment_version.outputs.version }}
release_name: Release ${{ steps.increment_version.outputs.version }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false



0 comments on commit 6b2579e

Please sign in to comment.