Use rsync
All checks were successful
Deploy Hotfix To Stage / build (push) Successful in 18s
Deploy Hotfix To Stage / deploy (push) Successful in 17s

This commit is contained in:
Ethan Lane 2025-01-10 18:41:11 +00:00
parent 2ac2737bc0
commit d3a0c418be
4 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ jobs:
- run: yarn test - run: yarn test
- name: "Copy files over to location" - name: "Copy files over to location"
run: cp -r . ${{ secrets.HOTFIX_REPO_PATH }} run: rsync -rvzP . ${{ secrets.HOTFIX_REPO_PATH }}
deploy: deploy:
environment: prod environment: prod

View file

@ -22,7 +22,7 @@ jobs:
- run: yarn test - run: yarn test
- name: "Copy files over to location" - name: "Copy files over to location"
run: cp -r . ${{ secrets.PROD_REPO_PATH }} run: rsync -rvzP . ${{ secrets.PROD_REPO_PATH }}
deploy: deploy:
environment: prod environment: prod

View file

@ -22,7 +22,7 @@ jobs:
- run: yarn test - run: yarn test
- name: "Copy files over to location" - name: "Copy files over to location"
run: cp -r . ${{ secrets.RELEASE_REPO_PATH }} run: rsync -rvzP . ${{ secrets.RELEASE_REPO_PATH }}
deploy: deploy:
environment: prod environment: prod

View file

@ -22,7 +22,7 @@ jobs:
- run: yarn test - run: yarn test
- name: "Copy files over to location" - name: "Copy files over to location"
run: cp -r . ${{ secrets.STAGE_REPO_PATH }} run: rsync -rvzP . ${{ secrets.STAGE_REPO_PATH }}
deploy: deploy:
environment: prod environment: prod