FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
https-proxy/.github/workflows/push.yml at main · reload/https-proxy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
reload
/
https-proxy
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Issues
0
Pull requests
0
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
https-proxy
/
.github
/
workflows
/
push.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
56 lines (54 loc) · 1.96 KB
Breadcrumbs
https-proxy
/
.github
/
workflows
/
push.yml
Copy path
File metadata and controls
56 lines (54 loc) · 1.96 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
---
name
:
Docker build
on
:
push
permissions
:
contents
:
read
jobs
:
derivates
:
name
:
Lookup derivates
runs-on
:
ubuntu-22.04
outputs
:
matrix
:
${{ env.derivates }}
steps
:
-
uses
:
actions/checkout@v7
-
name
:
Lookup derivates
run
:
echo "derivates=$(make _derivates)" >> "$GITHUB_ENV"
build
:
name
:
HTTPS Proxy
runs-on
:
ubuntu-22.04
needs
:
derivates
strategy
:
fail-fast
:
false
matrix
:
derivate
:
${{ fromJSON(needs.derivates.outputs.matrix) }}
platform
:
[linux/arm64, linux/amd64]
steps
:
-
uses
:
actions/checkout@v7
-
name
:
Set up QEMU
uses
:
docker/setup-qemu-action@v4
-
name
:
Set up Docker Buildx
id
:
buildx
uses
:
docker/setup-buildx-action@master
-
name
:
Build HTTPS ${{ matrix.derivate }} proxy (${{ matrix.platform }})
uses
:
docker/build-push-action@v7
with
:
file
:
"
Dockerfile
"
target
:
${{ matrix.derivate }}
builder
:
${{ steps.buildx.outputs.name }}
context
:
context
platforms
:
${{ matrix.platform }}
labels
:
|
org.opencontainers.image.title=HTTPS ${{ matrix.derivate }} proxy
org.opencontainers.image.description=Docker image for HTTPS ${{ matrix.derivate }} proxy
org.opencontainers.image.source=https://github.com/${{ github.repository }}
org.opencontainers.image.version=${{ matrix.derivate }}-${{ github.sha }}
org.opencontainers.image.revision=${{ github.sha }}
tags
:
|
ghcr.io/${{ github.repository }}:${{ matrix.derivate }}
load
:
${{ (matrix.platform == 'linux/amd64') && matrix.derivate == 'base' }}
-
uses
:
e1himself/goss-installation-action@v1.3.0
if
:
${{ (matrix.platform == 'linux/amd64') && matrix.derivate == 'base' }}
-
name
:
Test HTTPS proxy
if
:
${{ (matrix.platform == 'linux/amd64') && matrix.derivate == 'base' }}
run
:
|
make test
Back
|
FazBrowse Home
|
New Git URL