Created
September 9, 2021 09:57
-
-
Save kovshenin/ce1df56e128b429e570cbca9a04e4581 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
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