Skip to content

Commit

Permalink
Deploy syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JSn1nj4 committed Mar 20, 2024
1 parent a4e69c1 commit f297c20
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:

- name: "Pull, install, build"
run: |
ssh deploy-host 'cd $DEPLOY_HOST_PROJECT_ROOT \
&& git checkout $DEPLOY_BRANCH \
ssh deploy-host "cd \"$DEPLOY_HOST_PROJECT_ROOT\" \
&& git checkout \"$DEPLOY_BRANCH\" \
&& git reset --hard \
&& git pull \
&& composer install --no-dev \
&& yarn && yarn prod'
&& yarn && yarn prod"
env:
DEPLOY_BRANCH: ${{ secrets.DEPLOY_BRANCH }}
DEPLOY_HOST_PROJECT_ROOT: ${{ secrets.DEPLOY_HOST_PROJECT_ROOT }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 2.8.6

### Fix

- Deploy script syntax error

## Version 2.8.5

### Fix
Expand Down

0 comments on commit f297c20

Please sign in to comment.