This commit is contained in:
Andrey 2024-05-31 05:29:05 -04:00
parent 4aa2b1a2cd
commit 854e04a76b
1 changed files with 3 additions and 3 deletions

View File

@ -11,10 +11,10 @@ runs:
- name: Upload Bundle
shell: bash
run: |
if [ "${{github.ref}}" = "refs/heads/master" ]; then
echo "On master branch"
if [ "${{github.ref}}" = "refs/heads/main" ]; then
echo "On main branch"
elif [[ ${{github.ref}} == "lts"* ]]; then
echo "On LTS branch [${{github.ref}}]
echo "On LTS branch [${{github.ref}}]"
echo AUTOMATION_LTS=true >> $GITHUB_ENV
echo AUTOMATION_REF=${{github.ref_name}} >> $GITHUB_ENV
else