Compare commits

..

9 Commits

View File

@@ -6,7 +6,6 @@ on:
- master - master
- dev - dev
paths-ignore: paths-ignore:
- "**/.github/**"
- "**/.gitignore" - "**/.gitignore"
- "**/.vscode/**" - "**/.vscode/**"
- "**/README.md" - "**/README.md"
@@ -66,24 +65,20 @@ jobs:
git config --local user.name "creyD" git config --local user.name "creyD"
- name: Git Version - name: Git Version
uses: codacy/git-version@2.8.0 uses: PaulHatch/semantic-version@v5.4.0
id: git_version id: git_version
with: with:
minor-identifier: "feat:" tag_prefix: ""
major-identifier: "breaking:" major_pattern: "breaking:"
release-branch: ${{ github.head_ref }} minor_pattern: "feat:"
enable_prerelease_mode: false
version_format: "${major}.${minor}.${patch}rc${increment}"
- name: Create & Push Tag - name: Create & Push Tag
if: github.head_ref == 'master' || github.head_ref == 'dev' if: github.head_ref == 'master' || github.head_ref == 'dev'
run: | run: |
if [ "${{ github.head_ref }}" == "master" ]; then git tag ${{ steps.git_version.outputs.version }}
git tag ${{ steps.git_version.outputs.version }} git push origin ${{ steps.git_version.outputs.version }}
git push origin ${{ steps.git_version.outputs.version }}
elif [ "${{ github.head_ref }}" == "dev" ]; then
calculatedSha=$(git rev-parse --short ${{ github.sha }})
git tag ${{ steps.git_version.outputs.version }}-rc+${calculatedSha}
git push origin ${{ steps.git_version.outputs.version }}-rc+${calculatedSha}
fi
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5