Skip to content

Commit 33088b3

Browse files
committed
Fix bash syntax errors
1 parent 3d74aaf commit 33088b3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/sync-repo-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "${{ secrets.SSH_DEPLOY_KEY }}" > "$HOME/.ssh/deploy_key"
3232
chmod 600 "$HOME/.ssh/deploy_key"
3333
34-
export GIT_SSH_COMMAND="ssh -i $$HOME/.ssh/deploy_key"
34+
export GIT_SSH_COMMAND="ssh -i $HOME/.ssh/deploy_key"
3535
git remote add prod git@github.com:${{ vars.REPOSITORY_OWNER }}/${{ vars.REPOSITORY_NAME }}.git
3636
git fetch --all
3737

.github/workflows/sync-repo-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "${{ secrets.SSH_DEPLOY_KEY }}" > "$HOME/.ssh/deploy_key"
3232
chmod 600 "$HOME/.ssh/deploy_key"
3333
34-
export GIT_SSH_COMMAND="ssh -i $$HOME/.ssh/deploy_key"
34+
export GIT_SSH_COMMAND="ssh -i $HOME/.ssh/deploy_key"
3535
git remote add staging git@github.com:${{ vars.REPOSITORY_OWNER }}/${{ vars.REPOSITORY_NAME }}.git
3636
git fetch --all
3737

0 commit comments

Comments
 (0)