Skip to content

Commit

Permalink
Merge pull request #68 from JaydenMaalouf/fix/versioning
Browse files Browse the repository at this point in the history
Fix/versioning
  • Loading branch information
JaydenMaalouf authored Jul 17, 2024
2 parents 1209d47 + ce1ac73 commit 2c4d82e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@ jobs:
fetch-depth: 0
- name: Setup Versioning
uses: ./.github/actions/version
- name: Package Plugin - 5.1
- name: Package Plugin - 5.2
uses: ./.github/actions/package
with:
engineVersion: '5.1'
engineVersion: '5.2'
releaseVersion: ${{ steps.gitversion.outputs.semVer }}
epicGamesDirectory: ${{ secrets.EPIC_GAMES_DIRECTORY }}
launcherDirectory: ${{ secrets.LAUNCHER_DIRECTORY }}
- name: Package Plugin - 5.2
- name: Package Plugin - 5.3
uses: ./.github/actions/package
with:
engineVersion: '5.2'
engineVersion: '5.3'
releaseVersion: ${{ steps.gitversion.outputs.semVer }}
epicGamesDirectory: ${{ secrets.EPIC_GAMES_DIRECTORY }}
launcherDirectory: ${{ secrets.LAUNCHER_DIRECTORY }}
- name: Package Plugin - 5.3
- name: Package Plugin - 5.4
uses: ./.github/actions/package
with:
engineVersion: '5.3'
engineVersion: '5.4'
releaseVersion: ${{ steps.gitversion.outputs.semVer }}
epicGamesDirectory: ${{ secrets.EPIC_GAMES_DIRECTORY }}
launcherDirectory: ${{ secrets.LAUNCHER_DIRECTORY }}
Expand Down
11 changes: 7 additions & 4 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
mode: Mainline
major-version-bump-message: "^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\\([\\w\\s-]*\\))?(!:|:.*\\n\\n((.+\\n)+\\n)?BREAKING CHANGE:\\s.+)"
minor-version-bump-message: "^(feat)(\\([\\w\\s-]*\\))?:"
patch-version-bump-message: "^(build|chore|ci|docs|fix|perf|refactor|revert|style|test)(\\([\\w\\s-]*\\))?:"
continuous-delivery-fallback-tag: ''
major-version-bump-message: ^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([\w\s-]*\))?(!:|:.*\n\n((.+\n)+\n)?BREAKING CHANGE:\s.+)
minor-version-bump-message: '^(feat)(\([\w\s-]*\))?:'
patch-version-bump-message: '^(build|chore|ci|docs|fix|perf|refactor|revert|style|test)(\([\w\s-]*\))?:'
branches:
develop:
tag: beta
feature:
tag: alpha
mode: ContinuousDeployment
tag: alpha
hotfix:
tag: ''
increment: Patch
Expand All @@ -17,3 +17,6 @@ branches:
main:
tag: ''
increment: Minor
ignore:
sha: []
merge-message-formats: {}

0 comments on commit 2c4d82e

Please sign in to comment.