Skip to content

Instantly share code, notes, and snippets.

@theguuholi
Last active March 22, 2023 14:35
Show Gist options
  • Save theguuholi/519523baa8c535b253a26c2252214cf3 to your computer and use it in GitHub Desktop.
Save theguuholi/519523baa8c535b253a26c2252214cf3 to your computer and use it in GitHub Desktop.
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
@theguuholi
Copy link
Author

new gigalixir version: 0.6.1

@theguuholi
Copy link
Author

Change python to: 3.9.16

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment