Skip to content

Commit

Permalink
fix: DJANGO_SUPERUSER_PASSWORD
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaquiery committed Jan 17, 2025
1 parent 99c6bed commit 3fbbc08
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
FLY_DEMO_DB_NAME: "galv-demo-db"
FLY_ORG: "oxrse"
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
DJANGO_SECRET_KEY: ${{ secrets.DJANGO_SECRET_KEY }}
DJANGO_SECRET_KEY: ${{ secrets.DJANGO_DEMO_SECRET_KEY }}
DJANGO_SUPERUSER_PASSWORD: ${{ secrets.DJANGO_DEMO_SUPERUSER_PASSWORD }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -83,7 +84,8 @@ jobs:
--app $FLY_DEMO_NAME \
--config ./fly.demo.toml \
--stage \
DJANGO_SECRET_KEY="$DJANGO_SECRET_KEY"
DJANGO_SECRET_KEY="$DJANGO_SECRET_KEY" \
DJANGO_SUPERUSER_PASSWORD="$DJANGO_SUPERUSER_PASSWORD"
echo "Deploying app $FLY_DEMO_NAME"
flyctl deploy \
--app $FLY_DEMO_NAME \
Expand Down

0 comments on commit 3fbbc08

Please sign in to comment.