File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 3
3
release :
4
4
types : [published]
5
5
jobs :
6
- build :
6
+ Docker-Buildx :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- name : Checkout
@@ -15,13 +15,21 @@ jobs:
15
15
password : ${{ secrets.DOCKER_PASSWORD }}
16
16
- name : Set up Docker Buildx
17
17
uses : docker/setup-buildx-action@v3
18
- - name : Build variables
18
+ - name : BuildImage, BuildPlatform & BuildVersion
19
19
run : |
20
20
echo "BUILD_IMAGE=nixielectra/nginx-proxy-manager" >> $GITHUB_ENV
21
21
echo "BUILD_PLATFORM=linux/amd64,linux/arm64" >> $GITHUB_ENV
22
22
echo "BUILD_VERSION=$(cat .version)" >> $GITHUB_ENV
23
+ - name : BuildTag
24
+ run : |
23
25
echo "BUILD_TAG=-t ${BUILD_IMAGE}:${BUILD_VERSION} -t ${BUILD_IMAGE}:latest" >> $GITHUB_ENV
24
- - name : Buildx
26
+ - name : Build variables
27
+ run : |
28
+ echo "BUILD_IMAGE=$BUILD_IMAGE"
29
+ echo "BUILD_PLATFORM=$BUILD_PLATFORM"
30
+ echo "BUILD_VERSION=$BUILD_VERSION"
31
+ echo "BUILD_TAG=$BUILD_TAG"
32
+ - name : Buildx Dockerfile
25
33
run : |
26
34
chmod -R 755 scripts
27
35
./scripts/buildx-nixie
You can’t perform that action at this time.
0 commit comments