diff --git a/.github/workflows/unified-release.yml b/.github/workflows/unified-release.yml index e25f4d6e..137a4d00 100644 --- a/.github/workflows/unified-release.yml +++ b/.github/workflows/unified-release.yml @@ -2,7 +2,7 @@ name: Unified Cross-Platform Release on: push: - branches: [ "main" ] + branches: [ "master", "main" ] workflow_dispatch: inputs: version_number: @@ -24,7 +24,7 @@ jobs: get-version: name: Calculate Unified Version runs-on: ubuntu-latest - if: github.event.inputs.version_number == '' + if: github.event_name == 'push' || github.event.inputs.version_number == '' outputs: version: ${{ steps.version.outputs.version }} tag_name: ${{ steps.version.outputs.tag_name }}