Skip to content

Commit

Permalink
3.15.Final branch
Browse files Browse the repository at this point in the history
  • Loading branch information
edeandrea authored Oct 15, 2024
1 parent 76fd73d commit 070cb25
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-push-container-images-3.15.Final.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
calculate-refs:
runs-on: ubuntu-latest
outputs:
ref: ${{ steps.calculate_branch.outputs.ref}}
ref: ${{ steps.calculate_branch.outputs.ref }}
branch: ${{ env.BRANCH }}
steps:
- name: Calculate Branch
id: calculate_branch
Expand All @@ -41,8 +42,9 @@ jobs:
needs: calculate-refs
runs-on: ubuntu-latest
outputs:
has_commits: ${{ steps.calculate_commits.outputs.has_commits}}
ref: ${{ needs.calculate-refs.outputs.ref}}
has_commits: ${{ steps.calculate_commits.outputs.has_commits }}
ref: ${{ needs.calculate-refs.outputs.ref }}
branch: ${{ needs.calculate-refs.outputs.branch }}
steps:
- name: Print inputs
run: echo "ref = ${{ needs.calculate-refs.outputs.ref }}"
Expand Down Expand Up @@ -327,7 +329,7 @@ jobs:
secrets: inherit
with:
commit_id: ${{ needs.check-commit-count.outputs.ref }}
branch: ${{ env.BRANCH }}
branch: ${{ needs.check-commit-count.outputs.branch }}

cleanup-artifacts:
needs: deploy-resources
Expand Down

0 comments on commit 070cb25

Please sign in to comment.