Skip to content

Commit d65c9b9

Browse files
fix
1 parent 876d178 commit d65c9b9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/github-actions-deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@ jobs:
2525
repository: laravel-frontend-presets/paper-dashboard
2626
token: ${{ secrets.CT_TOKEN }}
2727
path: preset_folder
28-
- run: rsync -av --progress /home/runner/work/paper-dashboard-laravel/paper-dashboard-laravel/ct_folder /home/runner/work/paper-dashboard-laravel/paper-dashboard-laravel/preset_folder --exclude .git
28+
- name: Copy files
29+
working-directory: /home/runner/work/paper-dashboard-laravel/paper-dashboard-laravel
30+
run: |
31+
pwd
32+
- run: rsync -r --exclude '.git' ct_folder /preset_folder
2933
- name: Configure git and push to preset
3034
working-directory: /home/runner/work/paper-dashboard-laravel/paper-dashboard-laravel/preset_folder
3135
run: |
32-
pwd
3336
git config --global user.name "CI Bot"
3437
git config --global user.email "[email protected]"
3538
git add .

0 commit comments

Comments
 (0)