Skip to content

Commit

Permalink
fix(ci): set correct release version on all steps of finalize
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Scolaro <roberto.scolaro21@gmail.com>
  • Loading branch information
therealbobo authored and jasondellaluce committed May 14, 2024
1 parent cf35bc8 commit 8791397
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-final.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
REPOSITORY_DIR: rpm_repo
PACKAGES_DIR: packages
S3_BUCKET: download.draios.com
RELEASE: ${{ github.event.release.name }}
RELEASE: ${{ (github.event_name == 'workflow_dispatch') && (github.event.inputs.version != '') && github.event.inputs.version || github.event.release.name }}
KEY_ID: EC51E8C4

# These permissions are needed to interact with GitHub's OIDC Token endpoint.
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
REPOSITORY_NAME: stable
REPOSITORY_DIR: deb_repo
PACKAGES_DIR: packages
RELEASE: ${{ github.event.release.name }}
RELEASE: ${{ (github.event_name == 'workflow_dispatch') && (github.event.inputs.version != '') && github.event.inputs.version || github.event.release.name }}
S3_BUCKET: download.draios.com
KEY_ID: EC51E8C4

Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
REPOSITORY_NAME: stable
REPOSITORY_DIR: tgz_repo
PACKAGES_DIR: packages
RELEASE: ${{ github.event.release.name }}
RELEASE: ${{ (github.event_name == 'workflow_dispatch') && (github.event.inputs.version != '') && github.event.inputs.version || github.event.release.name }}
S3_BUCKET: download.draios.com

# These permissions are needed to interact with GitHub's OIDC Token endpoint.
Expand Down

0 comments on commit 8791397

Please sign in to comment.