Skip to content

Commit 5f38afd

Browse files
committed
fix: fix env var values for deploy and remove manual trigger
1 parent f828551 commit 5f38afd

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
- "webapp/**"
88
- "pyproject.toml"
99
branches: [master]
10-
workflow_dispatch:
1110

1211
permissions:
1312
contents: read
@@ -56,5 +55,9 @@ jobs:
5655
CLEVER_APP_ID: ${{ secrets.FE_CLEVER_APP_ID_PROD }}
5756
APP_NAME: cc_dashboard_prod
5857
run: |
58+
echo $CLEVER_APP_ID
59+
echo $APP_NAME
5960
./clever-tools-latest_linux/clever link $CLEVER_APP_ID
60-
./clever-tools-latest_linux/clever deploy -f -a $APP_NAME --quiet
61+
# As the clever tools CLI aliasing is escaping _ character, a temporary hard-coded value is needed
62+
# waiting for a fix from Clever
63+
./clever-tools-latest_linux/clever deploy -f -a ccdashboardprod --quiet

0 commit comments

Comments
 (0)