feat: improve design of task screen, dropdowns, add transition fade a… #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update backend deployment | |
on: | |
push: | |
branches: | |
- master | |
# Let's do this via a docker container in the future, this is pretty ugly. | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: update deployment | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.DEPLOY_SSH_HOST }} | |
username: ${{ secrets.DEPLOY_SSH_USERNAME }} | |
password: ${{ secrets.DEPLOY_SSH_PASSWORD }} | |
port: ${{ secrets.PORT }} | |
script: | | |
export PATH=$PATH:~/.local/share/pnpm/ | |
cd ~/wg-app/backend | |
pnpm i | |
pnpm build | |
pnpm start:prod |