-
Notifications
You must be signed in to change notification settings - Fork 2
69 lines (58 loc) · 1.92 KB
/
docker-build.yaml
File metadata and controls
69 lines (58 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# 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@v5
with:
persist-credentials: false
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
- uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- 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