Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Created September 9, 2021 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kovshenin/ce1df56e128b429e570cbca9a04e4581 to your computer and use it in GitHub Desktop.
Save kovshenin/ce1df56e128b429e570cbca9a04e4581 to your computer and use it in GitHub Desktop.
name: deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Sail
run: |
python -m pip install --upgrade pip
pip install sailed.io
- name: Deploy
run: sail deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment