summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDashie <dashie@sigpipe.me>2021-03-15 13:41:41 +0100
committerDashie <dashie@sigpipe.me>2021-03-15 13:41:41 +0100
commit007ab4f7d1c77d426e1b1b8b51ea57eac6501e13 (patch)
tree54bfb65a66055b70fcfeaab9206a4b5552a47ad9
parenta3ac6c00f5957469bc5fa39d5e751ee1b65ffa7d (diff)
-rw-r--r--.github/workflows/build-and-test.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index ad0f905c..d9a531ff 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -101,24 +101,22 @@ jobs:
uses: burnett01/rsync-deployments@4.1
with:
switches: -avc
- path: front-dist-${{ github.event.release.tag_name }}.zip
+ path: front/front-dist-${{ github.event.release.tag_name }}.zip
remote_path: /
remote_host: ${{ secrets.ASSETS_DEPLOY_HOST }}
remote_user: ${{ secrets.ASSETS_DEPLOY_USER }}
remote_key: ${{ secrets.ASSETS_DEPLOY_KEY }}
- working-directory: front
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
- name: Deploy front (master)
uses: burnett01/rsync-deployments@4.1
with:
switches: -avc
- path: front-dist-master.zip
+ path: front/front-dist-master.zip
remote_path: /
remote_host: ${{ secrets.ASSETS_DEPLOY_HOST }}
remote_user: ${{ secrets.ASSETS_DEPLOY_USER }}
remote_key: ${{ secrets.ASSETS_DEPLOY_KEY }}
- working-directory: front
if: github.ref == 'refs/heads/master'
backend: