Skip to content

Commit

Permalink
Merge pull request #92 from microsoft/al/update-channel
Browse files Browse the repository at this point in the history
add stable channel option
  • Loading branch information
bradarm authored Jul 29, 2024
2 parents 657823d + 11d1031 commit 9501575
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/m_60_container_registries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ function calculate_tag_from_channel() {
return_tag="${tag}-nightly"
fi

if [[ "${SPACEFX_CHANNEL}" == "stable" ]]; then
return_tag="${tag}-stable"
fi

if [[ "${SPACEFX_CHANNEL}" == "rc" ]]; then
return_tag="${tag}-rc"
fi
Expand Down

0 comments on commit 9501575

Please sign in to comment.