Skip to content

Commit

Permalink
Fix condition for hotfix releases
Browse files Browse the repository at this point in the history
  • Loading branch information
aruiz14 committed Jan 30, 2025
1 parent a0d29de commit c754745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-fleet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
runs-on: runs-on,runner=8cpu-linux-x64,mem=16,run-id=${{ github.run_id }}

env:
IS_HOTFIX: ${{ contains(github.ref, '-hotfix-ch-') }}
REGISTRY: "${{ contains(github.ref, '-hotfix-ch-') && 'stgregistry.suse.com' || 'docker.io' }}"
IS_HOTFIX: ${{ contains(github.ref, '-hotfix-') }}
REGISTRY: "${{ contains(github.ref, '-hotfix-') && 'stgregistry.suse.com' || 'docker.io' }}"

if: github.repository == 'rancher/fleet'
steps:
Expand Down

0 comments on commit c754745

Please sign in to comment.