Skip to content

Commit

Permalink
Merge pull request #12 from City-Bureau/fix-azure-badge
Browse files Browse the repository at this point in the history
🛠️ Fix: Azure status badge creation
  • Loading branch information
SimmonsRitchie authored Feb 27, 2024
2 parents 173873f + 86c629a commit 4b1c534
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:
AZURE_ACCOUNT_KEY: ${{ secrets.AZURE_ACCOUNT_KEY }}
AZURE_ACCOUNT_NAME: ${{ secrets.AZURE_ACCOUNT_NAME }}
AZURE_CONTAINER: ${{ secrets.AZURE_CONTAINER }}
AZURE_STATUS_CONTAINER: ${{ secrets.AZURE_STATUS_CONTAINER }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}

jobs:
Expand Down
2 changes: 1 addition & 1 deletion city_scrapers/settings/prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
AZURE_ACCOUNT_NAME = os.getenv("AZURE_ACCOUNT_NAME")
AZURE_ACCOUNT_KEY = os.getenv("AZURE_ACCOUNT_KEY")
AZURE_CONTAINER = os.getenv("AZURE_CONTAINER")
CITY_SCRAPERS_STATUS_CONTAINER = AZURE_CONTAINER
CITY_SCRAPERS_STATUS_CONTAINER = os.getenv("AZURE_STATUS_CONTAINER")

FEED_URI = (
"azure://{account_name}:{account_key}@{container}"
Expand Down

0 comments on commit 4b1c534

Please sign in to comment.