-
Notifications
You must be signed in to change notification settings - Fork 2
134 lines (127 loc) · 4.35 KB
/
ci_main_docker.yaml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: ci_main_docker
on:
push:
branches:
- "main"
jobs:
build:
name: Build Docker image
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
uses: kzrnm/get-net-sdk-project-versions-action@v2
id: get-version
with:
proj-path: src/AspNetCoreApi1Sample/AspNetCoreApi1Sample.csproj
-
name: Docker meta
id: meta-api1
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_ORG }}/itfoxtec
tags: |
type=raw,value=aspnetcore-api1-sample-${{ steps.get-version.outputs.version }}
type=raw,value=aspnetcore-api1-sample-latest,enable=true
-
name: Docker meta
id: meta-api2
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_ORG }}/itfoxtec
tags: |
type=raw,value=aspnetcore-api2-sample-${{ steps.get-version.outputs.version }}
type=raw,value=aspnetcore-api2-sample-latest,enable=true
-
name: Docker meta
id: meta-oidc-down-all
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_ORG }}/itfoxtec
tags: |
type=raw,value=aspnet-oidc-allup-sample-${{ steps.get-version.outputs.version }}
type=raw,value=aspnet-oidc-allup-sample-latest,enable=true
-
name: Docker meta
id: meta-saml-up
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_ORG }}/itfoxtec
tags: |
type=raw,value=aspnetcore-saml-idp-sample-${{ steps.get-version.outputs.version }}
type=raw,value=aspnetcore-saml-idp-sample-latest,enable=true
-
name: Docker meta
id: meta-ext-login-api
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_ORG }}/itfoxtec
tags: |
type=raw,value=external-login-api-sample-${{ steps.get-version.outputs.version }}
type=raw,value=external-login-api-sample-latest,enable=true
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build and push AspNetCoreApi1Sample
uses: docker/build-push-action@v5
with:
context: .
file: ./src/AspNetCoreApi1Sample/Dockerfile
platforms: linux/amd64
push: true
provenance: false
tags: ${{ steps.meta-api1.outputs.tags }}
labels: ${{ steps.meta-api1.outputs.labels }}
-
name: Build and push AspNetCoreApi2Sample
uses: docker/build-push-action@v5
with:
context: .
file: ./src/AspNetCoreApi2Sample/Dockerfile
platforms: linux/amd64
push: true
provenance: false
tags: ${{ steps.meta-api2.outputs.tags }}
labels: ${{ steps.meta-api2.outputs.labels }}
-
name: Build and push AspNetCoreOidcAuthCodeAllUpPartiesSample
uses: docker/build-push-action@v5
with:
context: .
file: ./src/AspNetCoreOidcAuthCodeAllUpPartiesSample/Dockerfile
platforms: linux/amd64
push: true
provenance: false
tags: ${{ steps.meta-oidc-down-all.outputs.tags }}
labels: ${{ steps.meta-oidc-down-all.outputs.labels }}
-
name: Build and push AspNetCoreSamlIdPSample
uses: docker/build-push-action@v5
with:
context: .
file: ./src/AspNetCoreSamlIdPSample/Dockerfile
platforms: linux/amd64
push: true
provenance: false
tags: ${{ steps.meta-saml-up.outputs.tags }}
labels: ${{ steps.meta-saml-up.outputs.labels }}
-
name: Build and push ExternalLoginApiSample
uses: docker/build-push-action@v5
with:
context: .
file: ./src/ExternalLoginApiSample/Dockerfile
platforms: linux/amd64
push: true
provenance: false
tags: ${{ steps.meta-ext-login-api.outputs.tags }}
labels: ${{ steps.meta-ext-login-api.outputs.labels }}