Skip to content

Commit

Permalink
interpolation quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddewie committed Jan 12, 2025
1 parent ffc0d82 commit edede90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

- name: Pull data
run: |
IMAGE='ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')'
IMAGE="ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')"
docker pull "$IMAGE"
CONTAINER_ID="$(docker container create "$IMAGE")"
docker cp "$CONTAINER_ID:/data/data.osm.pbf" data/data.osm.pbf
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Pull data
run: |
IMAGE='ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')'
IMAGE="ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')"
docker pull "$IMAGE"
CONTAINER_ID="$(docker container create "$IMAGE")"
docker cp "$CONTAINER_ID:/data/data.osm.pbf" data/data.osm.pbf
Expand All @@ -100,11 +100,11 @@ jobs:
run: |
echo '**' > .dockerignore
echo '!data/data.osm.pbf' >> .dockerignore
docker build import -f data.Dockerfile -t 'ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')'
docker build import -f data.Dockerfile -t "ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')"
- name: Push updated data
run: |
docker push 'ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')'
docker push "ghcr.io/hiddewie/openrailwaymap-data:$(echo '${{ matrix.bbox }}' | sed 's/,/_/g')"
trigger-deployment:
needs:
Expand Down

0 comments on commit edede90

Please sign in to comment.