-
-
Notifications
You must be signed in to change notification settings - Fork 2
29 lines (25 loc) · 732 Bytes
/
ubuntu.yml
File metadata and controls
29 lines (25 loc) · 732 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
# Create Ubuntu Docker image containing all the packages required for a full build of NeoMutt.
name: Ubuntu
on:
push:
paths:
- '.github/workflows/ubuntu.yml'
- 'ubuntu.24.04/Dockerfile'
schedule:
- cron: '0 3 1 * *'
# 1st of the month at 03:00
workflow_dispatch:
jobs:
build:
name: Build Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
name: Checkout repository
- uses: pmorelli92/github-container-registry-build-push@2.2.1
name: Build Ubuntu
with:
github-push-secret: ${{secrets.GITHUB_TOKEN}}
docker-image-name: ubuntu
docker-image-tag: latest
dockerfile-path: ./ubuntu.24.04/Dockerfile