Skip to content

Commit

Permalink
fix37
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek-kumar-piyush committed Mar 14, 2022
1 parent 17a8327 commit 1199e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
echo $GITHUB_ENV
echo $BRANCH
echo ${{ env.BRANCH }}
echo ${{ BRANCH == 'prod' }}
echo ${{ contains(env.BRANCH, 'prod') }}
- name: Create Release
if: env.BRANCH == "prod"
if: contains(env.BRANCH, 'prod')
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 1199e19

Please sign in to comment.