added functionality to datepicker and added stop sharing button. resh… #9
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: Deploy Wispr | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Connect to Droplet | |
uses: appleboy/ssh-action@v1.0.0 | |
with: | |
host: ${{ secrets.DROPLET_HOST }} | |
username: ${{ secrets.DROPLET_USERNAME }} | |
key: ${{ secrets.DROPLET_SSH_PRIVATE_KEY }} | |
port: 22 | |
script: | | |
sh deploy-wispr.sh | |
env: | |
DOCKER_BUILDKIT: 1 |