-
Notifications
You must be signed in to change notification settings - Fork 14
36 lines (34 loc) · 870 Bytes
/
docker.yml
File metadata and controls
36 lines (34 loc) · 870 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
name: Docker
on:
push:
tags:
- 'v?[0-9]+.[0-9]+*'
schedule:
# twice a month
- cron: '20 11 5,20 * *'
workflow_dispatch:
permissions:
artifact-metadata: write
attestations: write
id-token: write
packages: write
jobs:
ndncert-build:
uses: named-data/actions/.github/workflows/docker-image.yml@v1
with:
name: ndncert-build
target: build
ndncert-ca:
needs: ndncert-build
uses: named-data/actions/.github/workflows/docker-image.yml@v1
with:
name: ndncert-ca
target: ca
contexts: build=docker-image://${{ needs.ndncert-build.outputs.image }}
ndncert-client:
needs: ndncert-build
uses: named-data/actions/.github/workflows/docker-image.yml@v1
with:
name: ndncert-client
target: client
contexts: build=docker-image://${{ needs.ndncert-build.outputs.image }}