FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-debian/.github/workflows/dev.yml at main · bfren/docker-debian · GitHub
bfren
/
docker-debian
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Issues
0
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-debian
/
.github
/
workflows
/
dev.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
139 lines (136 loc) · 5.22 KB
Breadcrumbs
docker-debian
/
.github
/
workflows
/
dev.yml
Copy path
File metadata and controls
139 lines (136 loc) · 5.22 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
135
136
137
138
139
name
:
dev
on
:
push
:
branches
:
['**']
tags-ignore
:
['**']
workflow_dispatch
:
env
:
TEST_TAG
:
bfren/debian:test
jobs
:
build
:
strategy
:
fail-fast
:
false
matrix
:
debian
:
[ "12", "13" ]
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout code
uses
:
actions/checkout@v7
-
name
:
Get repository name
run
:
echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV
shell
:
bash
-
name
:
Read Debian name
uses
:
bfren/read-file@v2
with
:
file
:
./${{ matrix.debian }}/DEBIAN_NAME
id
:
debian_name
-
name
:
Read image version
uses
:
bfren/read-file@v2
with
:
file
:
./VERSION_MAJOR
id
:
version_major
-
name
:
Read image version
uses
:
bfren/read-file@v2
with
:
file
:
./VERSION_MINOR
id
:
version_minor
-
name
:
Read image version
uses
:
bfren/read-file@v2
with
:
file
:
./VERSION
id
:
version
-
name
:
Set up QEMU
uses
:
docker/setup-qemu-action@v4
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v4
-
name
:
Login to DockerHub
uses
:
docker/login-action@v4
with
:
username
:
${{ secrets.DOCKERHUB_USERNAME }}
password
:
${{ secrets.DOCKERHUB_TOKEN }}
-
name
:
Login to Quay.io Container Registry
uses
:
docker/login-action@v4
with
:
registry
:
quay.io
username
:
${{ github.repository_owner }}
password
:
${{ secrets.QUAY_TOKEN }}
-
name
:
Build and export
id
:
docker_export
uses
:
docker/build-push-action@v7
with
:
file
:
./${{ matrix.debian }}/Dockerfile
build-args
:
|
BF_IMAGE=${{ env.REPOSITORY_NAME }}
BF_VERSION=${{ steps.version.outputs.contents }}
load
:
true
tags
:
${{ env.TEST_TAG }}
-
name
:
Run tests
id
:
docker_test
run
:
|
docker run --entrypoint /test ${{ env.TEST_TAG }}
-
name
:
Build and push
id
:
docker_build
uses
:
docker/build-push-action@v7
with
:
context
:
.
file
:
./${{ matrix.debian }}/Dockerfile
build-args
:
|
BF_IMAGE=${{ env.REPOSITORY_NAME }}
BF_VERSION=${{ steps.version.outputs.contents }}
push
:
${{ startsWith(github.ref, 'refs/heads/') }}
platforms
:
linux/amd64,linux/arm/v7,linux/arm64
tags
:
|
bfren/debian:debian${{ matrix.debian }}-dev
bfren/debian:debian${{ matrix.debian }}-${{ steps.version_major.outputs.contents }}-dev
bfren/debian:debian${{ matrix.debian }}-${{ steps.version_minor.outputs.contents }}-dev
bfren/debian:debian${{ matrix.debian }}-${{ steps.version.outputs.contents }}-dev
bfren/debian:${{ steps.debian_name.outputs.contents }}-dev
bfren/debian:${{ steps.debian_name.outputs.contents }}-${{ steps.version_major.outputs.contents }}-dev
bfren/debian:${{ steps.debian_name.outputs.contents }}-${{ steps.version_minor.outputs.contents }}-dev
bfren/debian:${{ steps.debian_name.outputs.contents }}-${{ steps.version.outputs.contents }}-dev
quay.io/bfren/debian:debian${{ matrix.debian }}-dev
quay.io/bfren/debian:debian${{ matrix.debian }}-${{ steps.version_major.outputs.contents }}-dev
quay.io/bfren/debian:debian${{ matrix.debian }}-${{ steps.version_minor.outputs.contents }}-dev
quay.io/bfren/debian:debian${{ matrix.debian }}-${{ steps.version.outputs.contents }}-dev
quay.io/bfren/debian:${{ steps.debian_name.outputs.contents }}-dev
quay.io/bfren/debian:${{ steps.debian_name.outputs.contents }}-${{ steps.version_major.outputs.contents }}-dev
quay.io/bfren/debian:${{ steps.debian_name.outputs.contents }}-${{ steps.version_minor.outputs.contents }}-dev
quay.io/bfren/debian:${{ steps.debian_name.outputs.contents }}-${{ steps.version.outputs.contents }}-dev
-
name
:
Build and push default tags
id
:
docker_build_default
if
:
matrix.debian == '13'
uses
:
docker/build-push-action@v7
with
:
context
:
.
file
:
./${{ matrix.debian }}/Dockerfile
build-args
:
|
BF_IMAGE=${{ env.REPOSITORY_NAME }}
BF_VERSION=${{ steps.version.outputs.contents }}
push
:
${{ startsWith(github.ref, 'refs/heads/') }}
platforms
:
linux/amd64,linux/arm/v7,linux/arm64
tags
:
|
bfren/debian:dev
bfren/debian:${{ steps.version_major.outputs.contents }}-dev
bfren/debian:${{ steps.version_minor.outputs.contents }}-dev
bfren/debian:${{ steps.version.outputs.contents }}-dev
quay.io/bfren/debian:dev
quay.io/bfren/debian:${{ steps.version_major.outputs.contents }}-dev
quay.io/bfren/debian:${{ steps.version_minor.outputs.contents }}-dev
quay.io/bfren/debian:${{ steps.version.outputs.contents }}-dev
-
name
:
Image digest
run
:
echo ${{ steps.docker_build.outputs.digest }}
Back
|
FazBrowse Home
|
New Git URL