diff --git a/.github/workflows/ci-hotfix.yml b/.github/workflows/ci-hotfix.yml new file mode 100644 index 0000000..958598c --- /dev/null +++ b/.github/workflows/ci-hotfix.yml @@ -0,0 +1,16 @@ +name: CI on Hotfix +on: + push: + branches: [ hotfix ] + workflow_dispatch: + +jobs: + create-new-tag: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Create and Push new tag + shell: pwsh + run: | + . ./Scripts/VersionManager.ps1 + New-Tag -Branch "hotfix" \ No newline at end of file diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml new file mode 100644 index 0000000..983e607 --- /dev/null +++ b/.github/workflows/ci-release.yml @@ -0,0 +1,16 @@ +name: CI on Release +on: + push: + branches: [ release ] + workflow_dispatch: + +jobs: + create-new-tag: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Create and Push new tag + shell: pwsh + run: | + . ./Scripts/VersionManager.ps1 + New-Tag -Branch "release" \ No newline at end of file