Skip to content

Commit

Permalink
Revert "Fix IS_RELEASE in Set Version and Environment Profile composi…
Browse files Browse the repository at this point in the history
…te action"

This reverts commit edd4355.
  • Loading branch information
ivangabriele committed Jul 30, 2024
1 parent 2316d7c commit beabe0d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ runs:
echo "ENV_PROFILE=dev" >> $GITHUB_ENV
echo "IS_RELEASE=false" >> $GITHUB_ENV
- name: "Set IS_RELEASE as true if we are on master branch or if it's a tag or branch starting with 'v1' or 'v2'"
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v1') || startsWith(github.ref, 'refs/heads/v1') || startsWith(github.ref, 'refs/tags/v2') || startsWith(github.ref, 'refs/heads/v2')
- name: "Set IS_RELEASE as true if we are on master branch"
if: github.ref == 'refs/heads/master'
shell: bash
run: echo "IS_RELEASE=true" >> $GITHUB_ENV

Expand Down

0 comments on commit beabe0d

Please sign in to comment.