Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): use RELEASE_VERSION from step output #1495

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
uses: ./.github/workflows/trigger-maven-publish.yaml
secrets: inherit
with:
version: $RELEASE_VERSION
version: ${{ needs.release-version.outputs.RELEASE_VERSION }}

docker-release:
name: Publish Docker images
Expand All @@ -79,7 +79,7 @@ jobs:
uses: ./.github/workflows/trigger-docker-publish.yaml
secrets: inherit
with:
docker_tag: $RELEASE_VERSION
docker_tag: ${{ needs.release-version.outputs.RELEASE_VERSION }}

# Release: Helm Charts
helm-release:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/trigger-docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ on:
docker_tag:
description: 'Explicitly specify the Docker tag. Note that SHA and latest are added automatically.'
required: false
type: string

workflow_call:
inputs:
Expand Down Expand Up @@ -64,7 +65,7 @@ jobs:
- uses: actions/checkout@v4
- name: Log inputs
run: |
echo "Input Version: ${{ inputs.version }}, Input namespace: ${{ inputs.namespace}}"
echo "Input Version: ${{ inputs.docker_tag }}, Input namespace: ${{ inputs.namespace}}"
- uses: ./.github/actions/publish-docker-image
name: Publish ${{ matrix.variant.img }}
with:
Expand Down
2 changes: 1 addition & 1 deletion DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ maven/mavencentral/software.amazon.awssdk/profiles/2.27.2, , restricted, clearly
maven/mavencentral/software.amazon.awssdk/protocol-core/2.26.27, Apache-2.0, approved, clearlydefined
maven/mavencentral/software.amazon.awssdk/protocol-core/2.27.2, , restricted, clearlydefined
maven/mavencentral/software.amazon.awssdk/regions/2.26.27, Apache-2.0, approved, clearlydefined
maven/mavencentral/software.amazon.awssdk/regions/2.27.2, , restricted, clearlydefined
maven/mavencentral/software.amazon.awssdk/regions/2.27.2, Apache-2.0, approved, clearlydefined
maven/mavencentral/software.amazon.awssdk/retries-spi/2.26.27, Apache-2.0, approved, clearlydefined
maven/mavencentral/software.amazon.awssdk/retries-spi/2.27.2, Apache-2.0, approved, clearlydefined
maven/mavencentral/software.amazon.awssdk/retries/2.26.27, Apache-2.0, approved, clearlydefined
Expand Down
Loading