-
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (34 loc) · 1020 Bytes
/
fedora.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
# Create Fedora Docker images containing all the packages required for a full build of NeoMutt.
name: Fedora
on:
push:
paths:
- '.github/workflows/fedora.yml'
- 'fedora.40/Dockerfile'
- 'fedora.41/Dockerfile'
- 'fedora.42/Dockerfile'
schedule:
- cron: '0 3 1 * *'
# 1st of the month at 03:00
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
cfg:
- version: 40
- version: 41
- version: 42
name: Build Fedora ${{ matrix.cfg.version }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Fedora ${{ matrix.cfg.version }}
uses: pmorelli92/[email protected]
with:
github-push-secret: ${{secrets.GITHUB_TOKEN}}
docker-image-name: fedora
docker-image-tag: ${{ matrix.cfg.version }}
dockerfile-path: ./fedora.${{ matrix.cfg.version }}/Dockerfile