Fix {{}} to ()
This commit is contained in:
parent
2c126db665
commit
e94832e818
1 changed files with 1 additions and 1 deletions
2
.github/workflows/web-container.yml
vendored
2
.github/workflows/web-container.yml
vendored
|
|
@ -30,7 +30,7 @@ jobs:
|
||||||
event=${{ github.event_name }}
|
event=${{ github.event_name }}
|
||||||
workflow_type='dev';
|
workflow_type='dev';
|
||||||
workflow_envs='["dev"]'
|
workflow_envs='["dev"]'
|
||||||
current_version='${{ cat ./package.json | jq '.version' | tr -d '"' }}'
|
current_version=$(cat ./package.json | jq '.version' | tr -d '"')
|
||||||
if [[ $event == 'workflow_dispatch' && '${{ github.ref_name }}' == 'main' ]];
|
if [[ $event == 'workflow_dispatch' && '${{ github.ref_name }}' == 'main' ]];
|
||||||
then
|
then
|
||||||
echo "in if statement"
|
echo "in if statement"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue