Skip to content

Commit

Permalink
added build file
Browse files Browse the repository at this point in the history
  • Loading branch information
Benniphx committed May 29, 2024
1 parent 6c43b39 commit 1f69390
Showing 1 changed file with 14 additions and 52 deletions.
66 changes: 14 additions & 52 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,56 +1,18 @@
name: Docker PostGIS CI
name: Build Test Deploy

on:
push:
pull_request:
schedule:
- cron: '15 5 * * 1'

defaults:
run:
shell: bash

branches:
- 'master'
jobs:

make-docker-images:
strategy:
matrix:
postgres: [12, 13, 14, 15, 16]
postgis: ['3.4']
variant: [default, alpine]
include:
- postgres: 15
postgis: master
variant: default
- postgres: 16
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@v4

- name: Build docker image for ${{ env.VERSION }} ${{ env.VARIANT }}
run: make test

- name: Login to dockerhub
uses: docker/login-action@v3
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

build-docker:
runs-on: ubuntu-latest
- name: Build and push Docker images
uses: docker/build-push-action@v5
with:
context: .
file: 13-3.4/alpine/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
ghcr.io/jobrad-gmbh/postgis:13-3.4-alpine

0 comments on commit 1f69390

Please sign in to comment.