Last active
March 22, 2023 14:35
-
-
Save theguuholi/519523baa8c535b253a26c2252214cf3 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: Gigalixir CD | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: main | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9.16 | |
- uses: mhanberg/[email protected] | |
with: | |
GIGALIXIR_USERNAME: ${{ secrets.GIGALIXIR_USERNAME}} | |
GIGALIXIR_PASSWORD: ${{ secrets.GIGALIXIR_PASSWORD}} | |
GIGALIXIR_APP: ${{ secrets.GIGALIXIR_APP}} | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY}} | |
MIGRATIONS: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change python to: 3.9.16