-
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 777 Bytes
/
publish-2.7.yml
File metadata and controls
37 lines (35 loc) · 777 Bytes
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
name: publish-2.7
on:
push:
branches:
- coatl
paths:
- 2.7/**
schedule:
- cron: '0 8 9 * *'
jobs:
publish:
uses: ./.github/workflows/publish.yml
strategy:
matrix:
image:
- version: '2.7'
variant: bookworm
tags: |
2
2.7
2.7.18
- version: '2.7'
variant: slim-bookworm
tags: |
2-slim
2.7-slim
2.7.18-slim
with:
image: coatldev/python
version: ${{ matrix.image.version }}
variant: ${{ matrix.image.variant }}
tags: ${{ matrix.image.tags }}
username: ${{ vars.DOCKERHUB_USERNAME }}
secrets:
password: ${{ secrets.DOCKERHUB_TOKEN }}