Skip to content

update/refactor alpine3.18 postgis template #371

update/refactor alpine3.18 postgis template

update/refactor alpine3.18 postgis template #371

Workflow file for this run

name: Docker PostGIS CI
on:
push:
pull_request:
schedule:
- cron: '15 5 * * 1'
defaults:
run:
shell: bash
jobs:
make-docker-images:
strategy:
matrix:
postgres: [11, 12, 13, 14, 15]
postgis: ['3.3']
variant: [default, alpine]
include:
- postgres: 14
postgis: master
variant: default
- postgres: 15
postgis: master
variant: default
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }} variant ${{ matrix.variant }}
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.postgis == 'master' }}
env:
VERSION: ${{ matrix.postgres }}-${{ matrix.postgis }}
VARIANT: ${{ matrix.variant }}
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Build docker image for ${{ env.VERSION }} ${{ env.VARIANT }}
run: make test
- name: Login to dockerhub
uses: docker/login-action@v1
if: ${{ (github.ref == 'refs/heads/master') && (github.event_name != 'pull_request') }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
- name: Push docker image to dockerhub
if: ${{ (github.ref == 'refs/heads/master') && (github.event_name != 'pull_request') }}
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
run: make push