Skip to content

Docker Compose Build #261

Docker Compose Build

Docker Compose Build #261

Workflow file for this run

# Copyright (c) 2025 ADBC Drivers Contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Re-build and push the docker containers we use.
name: Docker Compose Build
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
inputs:
push:
description: "Push to ghcr.io"
required: true
type: boolean
default: false
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
name: "Build & Push"
runs-on: ubuntu-latest
if: github.event_name != 'schedule' || github.repository == 'adbc-drivers/dev'
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4.1.0
- uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
- name: Log in to ghcr.io
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "$GITHUB_ACTOR" --password-stdin
- name: Build
if: github.event_name != 'schedule' && !inputs.push
run: |
cd adbc_drivers_dev
docker compose build
- name: Push
if: github.event_name == 'schedule' || inputs.push
run: |
cd adbc_drivers_dev
docker compose build --push