Fix set-prod-branch/set-dev-branch

This commit is contained in:
Scott Donohoo 2022-12-20 11:35:34 -06:00
Родитель 10b7108cf7
Коммит c3f1e42e1e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -13,12 +13,12 @@ jobs:
steps:
- id: set-prod-branch
name: set-prod-branch
if: ${{ github.ref == 'refs/head/main'}}
if: ${{ github.ref == 'refs/heads/main'}}
run:
echo "config_env=config-infra-prod.yml" >> $GITHUB_ENV;
- id: set-dev-branch
name: setdevbranch
if: ${{ github.ref != 'refs/head/main'}}
if: ${{ github.ref != 'refs/heads/main'}}
run:
echo "config_env=config-infra-dev.yml" >> $GITHUB_ENV;
- id: set-output-defaults