Skip to content

Commit

Permalink
Update environment variable handling and enhance database commands in…
Browse files Browse the repository at this point in the history
… workflows
  • Loading branch information
PieterDePauw committed Nov 13, 2024
1 parent 4b163ad commit 855b2cd
Show file tree
Hide file tree
Showing 6 changed files with 924 additions and 911 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- uses: actions/checkout@v4
- uses: ./
with:
database-url: ${{ secrets.POSTGRES_URL }}
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
docs-root-path: "docs/"
database-url: ${{ env.DATABASE_URL }}
openai-api-key: ${{ env.OPENAI_API_KEY }}
#docs-root-path: "docs/"
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,8 @@ lib/**/*

# deprecated
.deprecated

# env
.env
.env*
!.env.example
Loading

0 comments on commit 855b2cd

Please sign in to comment.