Fix typo in doc of Dream.router (#314) #54
Workflow file for this run
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: docker-esy | |
on: | |
push: | |
paths: | |
- 'example/z-docker-esy/**' | |
- .github/workflows/docker-esy.yml | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: example/z-docker-esy | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{secrets.DIGITALOCEAN_SSH_KEY}} | |
- run: echo "${{secrets.DIGITALOCEAN_DOCKER_ESY_KNOWN_HOSTS}}" >> /home/runner/.ssh/known_hosts | |
- run: rsync -rlv . [email protected]:app --exclude _esy --exclude node_modules | |
- run: ssh [email protected] "cd app && bash deploy.sh" |