[ACA-4649] GitHub Actions workflow fixes (#3039)

* use commit message only where needed

* remove merge checks

* remove merge checks
This commit is contained in:
Denys Vuika
2023-03-06 16:13:14 -05:00
committed by GitHub
parent b0c5e017eb
commit b937e23281
4 changed files with 2 additions and 7 deletions
+1 -5
View File
@@ -40,8 +40,7 @@ env:
jobs:
publish-docker-registry:
if: github.event.pull_request.merged || inputs.dry-run-release
name: "Publish to registry"
name: "Publish to Quay"
runs-on: ubuntu-latest
steps:
- name: Checkout
@@ -64,7 +63,6 @@ jobs:
dry-run: ${{ inputs.dry-run-release }}
publish-to-dockerhub:
if: github.event.pull_request.merged || inputs.dry-run-release
name: "Publish to Dockerhub"
runs-on: ubuntu-latest
steps:
@@ -88,7 +86,6 @@ jobs:
dry-run: ${{ inputs.dry-run-release }}
publish-git-tag:
if: (github.event.pull_request.merged && github.ref_name == 'master') || inputs.dry-run-release
name: "Publish git tag"
runs-on: ubuntu-latest
steps:
@@ -115,7 +112,6 @@ jobs:
dry-run: ${{ inputs.dry-run-release }}
publish-libs:
if: (github.event.pull_request.merged && github.ref_name == 'master') || inputs.dry-run-release
name: "Publish libs to npm and gh registry"
runs-on: ubuntu-latest
steps: