Skip to content

Commit

Permalink
docker.build.yml: fix working directories
Browse files Browse the repository at this point in the history
add cd statements for `generate-values` script
  • Loading branch information
deer-wmde authored Aug 19, 2024
1 parent 31f375c commit d504a9a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/docker.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,15 @@ jobs:
name: Update argo values for local, staging and production
id: update-argo-values
run: |
cd ./repos/wbaas-deploy-staging
# run generate values script for local from staging folder
./repos/wbaas-deploy-staging/bin/generate-values local ui
./bin/generate-values local ui
# run generate values script for staging from staging folder
./repos/wbaas-deploy-staging/bin/generate-values staging ui
./bin/generate-values staging ui
# run generate values script for prod from prod folder
./repos/wbaas-deploy-production/bin/generate-values production ui
cd ../wbaas-deploy-production
./bin/generate-values production ui
-
name: Truncate commit message
id: truncate-commit-message
Expand Down

0 comments on commit d504a9a

Please sign in to comment.