Remove references to playground and dream.as #20
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-opam | |
# on: | |
# push: | |
# paths: | |
# - 'example/z-docker-opam/**' | |
# - .github/workflows/docker-opam.yml | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: example/z-docker-opam | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{secrets.DIGITALOCEAN_SSH_KEY}} | |
- run: echo "${{secrets.DIGITALOCEAN_DOCKER_OPAM_KNOWN_HOSTS}}" >> /home/runner/.ssh/known_hosts | |
- run: rsync -rlv . [email protected]:app --exclude _build --exclude _opam | |
- run: ssh [email protected] "cd app && bash deploy.sh" |