Add search_dist to router configuration #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker images | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get version tag | |
id: get_tag | |
run: | | |
if [ ${{ startsWith(github.ref, 'refs/tags/') }} = true ]; then | |
echo "tag=latest,${GITHUB_REF:10}" >>$GITHUB_OUTPUT | |
else | |
echo "tag=latest" >>$GITHUB_OUTPUT | |
fi | |
- name: Build and Publish bbox-server-qgis | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: sourcepole/bbox-server-qgis | |
username: ${{ secrets.DOCKER_HUB_USER }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
tags: "${{ steps.get_tag.outputs.tag }}" | |
dockerfile: docker/Dockerfile-qgis-server | |
- name: Build and Publish bbox-map-server-qgis | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
env: | |
BUILD_DIR: bbox-map-server | |
with: | |
name: sourcepole/bbox-map-server-qgis | |
username: ${{ secrets.DOCKER_HUB_USER }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
buildargs: BUILD_DIR | |
tags: "${{ steps.get_tag.outputs.tag }}" | |
dockerfile: docker/Dockerfile-qgis-server |