-
Notifications
You must be signed in to change notification settings - Fork 35
35 lines (30 loc) · 887 Bytes
/
docker.yml
File metadata and controls
35 lines (30 loc) · 887 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
name: Docker Image Build
on: # yamllint disable-line rule:truthy
push:
branches:
- main
paths:
- .github/workflows/docker.yml
- containerization/docker/fedora/Dockerfile
- containerization/docker/ubuntu/Dockerfile
- containerization/docker/ubuntu/fwd.jsonc
pull_request:
paths:
- .github/workflows/docker.yml
- containerization/docker/fedora/Dockerfile
- containerization/docker/ubuntu/Dockerfile
- containerization/docker/ubuntu/fwd.jsonc
schedule:
- cron: '0 0 * * 0' # Runs every Sunday at midnight UTC
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Docker:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v6
- name: Build Docker Image
run: make oci-image