-
-
Notifications
You must be signed in to change notification settings - Fork 56
157 lines (133 loc) · 4.48 KB
/
docker-publish.yml
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# Stage Docker images through GitHub Actions (GHA) to GitHub Container Registry (GHCR).
#
# Derived from:
# https://github.com/crate/cratedb-prometheus-adapter/blob/main/.github/workflows/release.yml
name: Release Docker
on:
push:
tags:
- '*.*.*'
pull_request:
branches: [ main ]
schedule:
- cron: '0 10 * * *' # everyday at 10am
# Allow job to be triggered manually.
workflow_dispatch:
permissions: {}
# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
# The name for the produced image at ghcr.io.
env:
IMAGE_NAME: "${{ github.repository }}"
PYTHON: "3.13"
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Acquire sources
uses: actions/checkout@v4
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v5
with:
enable-cache: false
python-version: ${{ env.PYTHON }}
- name: Build wheel package
run: uv build
- name: Upload wheel package
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-wheel-${{ github.sha }}
path: dist/wetterdienst-*.whl
retention-days: 7
- name: Run tests
run: |
export DOCKER_BUILDKIT=1
export COMPOSE_DOCKER_CLI_BUILD=1
export BUILDKIT_PROGRESS=plain
docker build . -t wd
docker run wd wetterdienst info
docker:
needs: build_and_test
runs-on: ubuntu-latest
permissions:
packages: write
if: ${{ ! (startsWith(github.actor, 'dependabot') || github.event.pull_request.head.repo.fork ) }}
steps:
- name: Acquire sources
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: true
- name: Download wheel package
uses: actions/download-artifact@v4
with:
name: ${{ runner.os }}-wheel-${{ github.sha }}
path: dist
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# List of Docker images to use as base name for tags
images: |
ghcr.io/${{ env.IMAGE_NAME }}
# Generate Docker tags based on the following events/attributes
tags: |
type=schedule,pattern=nightly
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Inspect meta # zizmor: ignore[template-injection]
run: |
echo "Tags: ${{ steps.meta.outputs.tags }}"
echo "Labels: ${{ steps.meta.outputs.labels }}"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64 # TODO: add linux/arm/v7
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3 # zizmor: ignore[cache-poisoning]
- name: Cache Docker layers
uses: actions/cache@v4 # zizmor: ignore[cache-poisoning]
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Inspect builder # zizmor: ignore[template-injection]
run: |
echo "Name: ${{ steps.buildx.outputs.name }}"
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
echo "Status: ${{ steps.buildx.outputs.status }}"
echo "Flags: ${{ steps.buildx.outputs.flags }}"
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64 # TODO: add linux/arm/v7
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
provenance: false
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
- name: Display git status
run: |
set -x
git describe --tags
git status