Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GitHub Actions workflow for auto deployments #81

Merged
merged 1 commit into from
Oct 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Deploy the Voila Gallery
uses: appleboy/[email protected]
with:
host: ${{ secrets.VOILA_GALLERY_HOST }}
username: ${{ secrets.VOILA_GALLERY_SSH_USERNAME }}
key: ${{ secrets.VOILA_GALLERY_SSH_PRIVATE_KEY }}
script: |
sudo /opt/tljh/hub/bin/python3 -m pip install -U git+https://github.com/voila-dashboards/gallery@master#"egg=tljh-voila-gallery&subdirectory=tljh-voila-gallery"
sudo systemctl restart jupyterhub.service
sudo systemctl status jupyterhub.service

- name: Check voila-gallery.org is reachable
run: |
sleep 5
curl -sSf https://voila-gallery.org > /dev/null