Switch to Nominatim for reverse geocoding #308
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: Master workflow | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
docker: | |
name: Test and build Docker images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
config-inline: | | |
[registry."docker.io"] | |
mirrors = ["mirror.gcr.io"] | |
- name: Login to GitHub container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Gitea container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: git.jlel.se | |
username: nologin | |
password: ${{ secrets.GITEA_TOKEN }} | |
- name: Test | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
target: test | |
tags: test | |
- name: Build base image | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
target: base | |
tags: ghcr.io/jlelse/goblog:latest,git.jlel.se/jlelse/goblog:latest | |
provenance: false | |
- name: Build tools image | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
target: tools | |
tags: ghcr.io/jlelse/goblog:tools,git.jlel.se/jlelse/goblog:tools | |
provenance: false | |
- name: Delete old untagged images | |
uses: camargo/delete-untagged-action@v1 | |
with: | |
github-token: ${{ secrets.DELETE_PACKAGES_TOKEN }} | |
personal-account: true |