Skip to content

Commit

Permalink
SW-2493 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-mrbeam committed Jan 4, 2023
1 parent 174eb3c commit 93afb17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deployment-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
id: set_release_env
run: |
if [ ${{ steps.regex-match-alpha-release.outputs.match }} != "" ]; then
echo 'deployment-env=alpha' >> $GITHUB_OUTPUT
echo 'deployment-env=Alpha' >> $GITHUB_OUTPUT
elif [ ${{ steps.regex-match-beta-release.outputs.match }} != "" ]; then
echo 'deployment-env=beta' >> $GITHUB_OUTPUT
echo 'deployment-env=Beta' >> $GITHUB_OUTPUT
elif [ ${{ steps.regex-match-prod-release.outputs.match }} != "" ]; then
echo 'deployment-env=production' >> $GITHUB_OUTPUT
echo 'deployment-env=Production' >> $GITHUB_OUTPUT
else
echo 'deployment-env=unknown' >> $GITHUB_OUTPUT
echo 'release name unrecognized: ${{ github.ref_name }}'
Expand Down

0 comments on commit 93afb17

Please sign in to comment.