Chore: deploy script now cleans up files
This commit is contained in:
parent
c559b4ae1e
commit
e34ecd2f62
1 changed files with 4 additions and 1 deletions
|
@ -52,7 +52,7 @@ jobs:
|
|||
|
||||
- name: Zipping dist file
|
||||
run: |
|
||||
mv -f dist /tmp/${{ github.ref_name }}
|
||||
mv dist /tmp/${{ github.ref_name }}
|
||||
cd /tmp
|
||||
zip ${{ github.ref_name }}.zip -r ${{ github.ref_name }}/*
|
||||
cd -
|
||||
|
@ -60,6 +60,9 @@ jobs:
|
|||
- name: uploading file
|
||||
run: scp /tmp/${{ github.ref_name }}.zip hetzner:/root/staging/
|
||||
|
||||
- name: cleanup files
|
||||
run: rm /tmp/${{ github.ref_name }}.zip && rm -rf /tmp/${{ github.ref_name }}/
|
||||
|
||||
- name: unzipping remote file
|
||||
run: ssh hetzner "cd /root/staging && rm -rf ${{ github.ref_name }} && unzip ${{ github.ref_name }}.zip && rm -rf /root/public/${{ github.ref_name }} && mv /root/staging/${{ github.ref_name }}/ /root/public/ && rm ${{ github.ref_name }}.zip"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue