-
Notifications
You must be signed in to change notification settings - Fork 510
48 lines (42 loc) · 1.2 KB
/
docker_rebuild.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
# Rebuild docker images if needed.
name: Docker rebuild
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'utils/docker/images/**'
- '.github/workflows/docker_rebuild.yml'
schedule:
# run this job at 22:00 UTC every other day (hopefully just before the nightly)
- cron: '0 22 */2 * *'
env:
# use org's Private Access Token to log in to GitHub Container Registry
GH_CR_USER: ${{ secrets.GH_CR_USER }}
GH_CR_PAT: ${{ secrets.GH_CR_PAT }}
GITHUB_REPO: pmem/pmdk
DOCKER_REPO: ghcr.io/pmem/pmdk
WORKDIR: utils/docker
PUSH_IMAGE: 1
permissions: {}
jobs:
image:
if: github.repository == 'pmem/pmdk'
name: Image
runs-on: ubuntu-latest
strategy:
matrix:
include:
- {OS: opensuse-leap, OS_VER: 15}
- {OS: rockylinux, OS_VER: 8}
- {OS: rockylinux, OS_VER: 9}
- {OS: ubuntu, OS_VER: 22.04}
steps:
- name: Clone the git repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Rebuild the image
env:
OS: ${{ matrix.OS }}
OS_VER: ${{ matrix.OS_VER }}
run: cd $WORKDIR && ./pull-or-rebuild-image.sh rebuild