mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
[ACS-7241] Parallel releases fix (#4488)
This commit is contained in:
parent
ec3d88829f
commit
af3b54129e
0
.github/workflows/release-branch.yml
vendored
0
.github/workflows/release-branch.yml
vendored
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@ -95,7 +95,7 @@ jobs:
|
|||||||
publish-docker-registry:
|
publish-docker-registry:
|
||||||
if: |
|
if: |
|
||||||
always() &&
|
always() &&
|
||||||
(${{ inputs.publish-to-quay == 'true' }} && (needs.unit-tests.result == 'success' || needs.unit-tests.result == 'skipped'))
|
(${{ inputs.publish-to-quay == 'true' }} && (${{ needs.unit-tests.result == 'success' }} || ${{ needs.unit-tests.result == 'skipped' }}))
|
||||||
needs: [lint, unit-tests]
|
needs: [lint, unit-tests]
|
||||||
name: "Publish to Quay"
|
name: "Publish to Quay"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -130,7 +130,7 @@ jobs:
|
|||||||
publish-to-dockerhub:
|
publish-to-dockerhub:
|
||||||
if: |
|
if: |
|
||||||
always() &&
|
always() &&
|
||||||
(${{ inputs.publish-to-docker == 'true' }} && (needs.unit-tests.result == 'success' || needs.unit-tests.result == 'skipped'))
|
(${{ inputs.publish-to-docker == 'true' }} && (${{ needs.unit-tests.result == 'success' }} || ${{ needs.unit-tests.result == 'skipped' }}))
|
||||||
needs: [lint, unit-tests]
|
needs: [lint, unit-tests]
|
||||||
name: "Publish to Dockerhub"
|
name: "Publish to Dockerhub"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -165,7 +165,7 @@ jobs:
|
|||||||
publish-git-tag:
|
publish-git-tag:
|
||||||
if: |
|
if: |
|
||||||
always() &&
|
always() &&
|
||||||
(${{ inputs.publish-git-tag == 'true' }} && (needs.unit-tests.result == 'success' || needs.unit-tests.result == 'skipped'))
|
(${{ inputs.publish-git-tag == 'true' }} && (${{ needs.unit-tests.result == 'success' }} || ${{ needs.unit-tests.result == 'skipped' }}))
|
||||||
needs: [lint, unit-tests]
|
needs: [lint, unit-tests]
|
||||||
name: "Publish Git Tag"
|
name: "Publish Git Tag"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -197,7 +197,7 @@ jobs:
|
|||||||
publish-libs:
|
publish-libs:
|
||||||
if: |
|
if: |
|
||||||
always() &&
|
always() &&
|
||||||
(${{ inputs.publish-to-npm == 'true' }} && (needs.unit-tests.result == 'success' || needs.unit-tests.result == 'skipped'))
|
(${{ inputs.publish-to-npm == 'true' }} && ( ${{ needs.unit-tests.result == 'success' }} || ${{ needs.unit-tests.result == 'skipped' }}))
|
||||||
needs: [lint, unit-tests]
|
needs: [lint, unit-tests]
|
||||||
name: "Publish libs to NPM and GitHub registry"
|
name: "Publish libs to NPM and GitHub registry"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user