From 4fa5c7c02af9ab17d396568cae90258387c2e3ac Mon Sep 17 00:00:00 2001 From: Sandeep Date: Mon, 8 Apr 2024 16:42:38 +0800 Subject: [PATCH] chore: added the $ var --- .github/workflows/release_production.yml | 2 +- .vscode/settings.json | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_production.yml b/.github/workflows/release_production.yml index 3bd33d8e8..ceb4996d1 100644 --- a/.github/workflows/release_production.yml +++ b/.github/workflows/release_production.yml @@ -57,7 +57,7 @@ jobs: - name: Create Slack Message id: create_slack_message run: | - if [ "WORKFLOW_CONCLUSION" == "success" ]; then + if [ "$WORKFLOW_CONCLUSION" == "success" ]; then echo "MESSAGE=$RELEASE_TYPE }} Release succeeded for api.deriv.com with version *${{ needs.build_and_publish.outputs.RELEASE_VERSION }}*" >> $GITHUB_OUTPUT else echo "MESSAGE=$RELEASE_TYPE }} Release failed for api.deriv.com with version *${{ needs.build_and_publish.outputs.RELEASE_VERSION }}*" >> $GITHUB_OUTPUT diff --git a/.vscode/settings.json b/.vscode/settings.json index 8c167a488..02db64b75 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,7 @@ { - "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + }, "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }