Skip to content

Revert "chore: add metadata labels to container image" #50

Revert "chore: add metadata labels to container image"

Revert "chore: add metadata labels to container image" #50

Workflow file for this run

name: ci
on:
push:
branches:
- 'master'
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-24.04
strategy:
matrix:
version: [13, 14, 15, 16, 17]
steps:
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
push: true
build-args: |
POSTGRES_VERSION=${{ matrix.version }}
tags: siemens/postgres-backup-s3:${{ matrix.version }}