diff --git a/.github/workflows/release_version_poc.yaml b/.github/workflows/release_version_poc.yaml index 29d91df..6cc2bb3 100644 --- a/.github/workflows/release_version_poc.yaml +++ b/.github/workflows/release_version_poc.yaml @@ -35,7 +35,7 @@ jobs: outputs: REUSE_DEV_VERSION: ${{env.NEXT_DEV_VERSION}} REUSE_RELEASE_VERSION: ${{env.NEXT_RELEASE_VERSION}} - if: ${{github.event.inputs.action}} == 'Custom' + if: github.event.inputs.action == 'Custom' steps: - name: Stops If Fields Are Empty if: ${{env.DEVELOPMENT_VERSION_INPUT}} == '' && ${{env.RELEASE_VERSION_INPUT}} == '' @@ -101,7 +101,7 @@ jobs: get_version: runs-on: ubuntu-latest name: Get Version - if: ${{github.event.inputs.action}} != 'Custom' + if: github.event.inputs.action != 'Custom' outputs: RELEASE_VERSION: ${{steps.splitVersion.outputs._0}} _MAJOR: ${{steps.splitVersionMinor.outputs._0}}