File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 2020
2121jobs :
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
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
Original file line number Diff line number Diff line change @@ -3,8 +3,14 @@ SHELL := bash
33deploy_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+
610make 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
You can’t perform that action at this time.
0 commit comments