Skip to content

Tagged Release Docker Image #11

Tagged Release Docker Image

Tagged Release Docker Image #11

Workflow file for this run

name: Release Docker Image
on:
push:
branches: [ release_docker, dev-build ]
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
# This is a manual workaround until the latest tagging is fixed:
# https://github.com/timescale/timescaledb-docker/issues/205
no_tag_latest:
description: 'Do not tag the published images as latest'
type: boolean
required: false
default: false
env:
ORG: samagragovernance
TS_VERSION: main
jobs:
# Build multi-arch TimescaleDB images for both TSL and OSS code.
postgres:
name: PG${{ matrix.pg }}${{ matrix.oss }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
pg: [12, 13, 14, 15]
oss: [ "", "-oss" ]
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USER }} --password-stdin
- name: Build and push multi-platform Docker image for postgres
run: |
if [ "${{ github.event.inputs.no_tag_latest }}" == "true" ]
then
export BETA=1
fi
make multi${{ matrix.oss }} ORG=$ORG PG_VER=pg${{ matrix.pg }} \
TS_VERSION=$TS_VERSION PREV_EXTRA="${{ matrix.oss }}" BETA=$BETA
# Build bitnami images of TimscaleDB.
# The images are built only for amd64, since it is the only supported architecture in the base image bitname/postgresql.
# The images are only built for TSL code.
timescaledb-bitnami:
name: PG${{ matrix.pg }}-bitnami
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
pg: [12, 13, 14, 15]
steps:
- uses: actions/checkout@v3
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USER }} --password-stdin
- name: Build and push amd64 Docker image for TimescaleDB bitnami
run: |
export BETA=1
make push ORG=$ORG PG_VER=pg${{ matrix.pg }} TS_VERSION=$TS_VERSION BETA=$BETA
working-directory: bitnami