push version #8
2 changed files with 2 additions and 2 deletions
2
.github/workflows/web-deploy-nonprod.yml
vendored
2
.github/workflows/web-deploy-nonprod.yml
vendored
|
|
@ -53,7 +53,7 @@ jobs:
|
|||
fi
|
||||
build:
|
||||
needs: check-inputs
|
||||
if: inputs.workflow_type != 'release'
|
||||
if: needs.check-inputs.result == 'success' && inputs.workflow_type != 'release'
|
||||
environment: ${{ inputs.environments }}
|
||||
runs-on: 'ubuntu-latest'
|
||||
permissions:
|
||||
|
|
|
|||
2
.github/workflows/web-deploy-prod.yml
vendored
2
.github/workflows/web-deploy-prod.yml
vendored
|
|
@ -53,7 +53,7 @@ jobs:
|
|||
fi
|
||||
build:
|
||||
needs: check-inputs
|
||||
if: inputs.workflow_type == 'release'
|
||||
if: needs.check-inputs.result == 'success' && inputs.workflow_type != 'release'
|
||||
environment: ${{ inputs.environments }}
|
||||
runs-on: 'ubuntu-latest'
|
||||
permissions:
|
||||
|
|
|
|||
Loading…
Reference in a new issue