Skip to content

Commit

Permalink
add env var
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgamez committed Sep 13, 2023
1 parent 9bd3c5b commit 3969f20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/store_latest_datasets_cronjob.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
# schedule:
# - cron: "0 0 * * *"

env:
URL_STORAGE_PREFIX: "https://storage.googleapis.com/storage/v1/b/mdb-latest/o"

jobs:
get-urls:
runs-on: ubuntu-latest
Expand All @@ -30,7 +33,7 @@ jobs:
# OS constants
ROOT = os.getcwd()
GTFS_SCHEDULE_CATALOG_PATH_FROM_ROOT = "catalogs/sources/gtfs/schedule"
URL_STORAGE_PREFIX = "https://storage.googleapis.com/storage/v1/b/mdb-latest/o"
URL_STORAGE_PREFIX = """${{ env.URL_STORAGE_PREFIX }}"""
MATRIX_FILE = "urls_matrix.json"
# File constants
Expand Down

0 comments on commit 3969f20

Please sign in to comment.