Skip to content

Commit

Permalink
[ACS-7241] Add missing needs clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKinas committed May 27, 2024
1 parent 5429d3f commit 0e65a86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/actions/publish-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ runs:
using: "composite"
steps:
- name: Print vars
shell: bash
run: |
echo "tag_version: ${{ inputs.tag_version }}"
# - name: Set up QEMU
Expand Down
1 change: 1 addition & 0 deletions .github/actions/publish-libs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ runs:
using: "composite"
steps:
- name: Print vars
shell: bash
run: |
echo "branch_name: ${{ inputs.branch_name }}"
echo "npm_tag: ${{ inputs.npm_tag }}"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ jobs:

publish-docker-registry:
if: ${{ github.event.inputs.publish-to-quay }}
needs: [lint, unit-tests]
name: "Publish to Quay"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -126,6 +127,7 @@ jobs:

publish-to-dockerhub:
if: ${{ github.event.inputs.publish-to-docker }}
needs: [lint, unit-tests]
name: "Publish to Dockerhub"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -158,6 +160,7 @@ jobs:

publish-git-tag:
if: ${{ github.event.inputs.publish-git-tag }}
needs: [lint, unit-tests]
name: "Publish Git Tag"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -187,6 +190,7 @@ jobs:

publish-libs:
if: ${{ github.event.inputs.publish-to-npm }}
needs: [lint, unit-tests]
name: "Publish libs to NPM and GitHub registry"
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 0e65a86

Please sign in to comment.