Skip to content

Commit 715ac5b

Browse files
committed
OPS-12 Fixed wrong variable in kosli env dev
1 parent 4b212e8 commit 715ac5b

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/deploy-to-staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
jobs:
2222
deploy-to-staging:
23-
name: Simulate deployment to staging
23+
name: Deploy to staging
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
3636
- name: Get what SW is running in dev
3737
run: |
3838
source scripts/lib-kosli.sh
39-
DEV_ENV_JSON=$(get_current_running_env_json ${KOSLI_ENV_DEV})
39+
DEV_ENV_JSON=$(get_current_running_env_json ${{ env.KOSLI_ENV_DEV }})
4040
echo "DEV_ENV_JSON=${DEV_ENV_JSON}" >> $GITHUB_ENV
4141
4242

Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ SHELL := bash
33
deploy_to_staging:
44
gh workflow run deploy-to-staging.yml --ref main
55

6+
create_release_candidate:
7+
gh workflow run create-release.yml --ref main
8+
9+
610
make update_tags:
711
git fetch --tags --force
812

9-
create_release_candidate:
10-
gh workflow run create-release.yml --ref main
13+
report_all_envs:
14+
gh workflow run simulate-environment-reporting-dev.yml --ref main
15+
gh workflow run simulate-environment-reporting-staging.yml --ref main
16+
gh workflow run simulate-environment-reporting-prod.yml --ref main

0 commit comments

Comments
 (0)