Skip to content

Commit

Permalink
Fix: adding DB_URI var when building docs in release (#151)
Browse files Browse the repository at this point in the history
## Description
The .env no longer exists in the repo, so we must manually set a value
for the required DB_URI

## Additional Notes
Example build failure
https://github.com/CDCgov/RecordLinker/actions/runs/12319787147/job/34387640857
  • Loading branch information
ericbuckley authored Dec 13, 2024
1 parent bcfaf42 commit 64158df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
export DB_URI="sqlite:///:memory:"
export INITIAL_ALGORITHMS=""
export VERSION=${{ env.NEXT_TAG }}
./scripts/build_docs.sh _site
Expand Down

0 comments on commit 64158df

Please sign in to comment.