Skip to content

Commit

Permalink
infra-2103: Fix store deploy workflow (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoroux authored Sep 16, 2024
1 parent 6520eff commit 224d447
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy-all-psh-stores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
env:
PLATFORMSH_CLI_TOKEN: ${{ secrets.PLATFORMSH_CLI_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "github-ci"
PROJECTS=`platform project:list --pipe`
for PROJECT in $PROJECTS;
do
Expand All @@ -36,6 +38,7 @@ jobs:
cd $PROJECT
date > timestamp
git add timestamp
git commit -m "Updating timestamp to force a store deploy"
platform push --no-wait
cd ..
done

0 comments on commit 224d447

Please sign in to comment.