Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
Update dockerize-tag.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wickywaka authored Jul 27, 2022
1 parent c391434 commit cc25713
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/dockerize-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,30 @@ jobs:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}


- name: Build and Push ldap
id: docker_build_ldap
uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
file: Dockerfile.ldap
tags:
wickywaka/docker-dhcpd:ladp-${{ steps.semver-parser.outputs.fullversion }},
wickywaka/docker-dhcpd:ldap-${{ steps.semver-parser.outputs.major }}

- name: Print LDAP Image Digest
run: echo ${{ steps.docker_build_ldap.outputs.digest }}

- name: Build and Push
id: docker_build
uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: networkboot/dhcpd:${{ steps.semver-parser.outputs.fullversion }}
tags:
networkboot/dhcpd:${{ steps.semver-parser.outputs.fullversion }},
networkboot/dhcpd:${{ steps.semver-parser.outputs.major }}

- name: Print Image Digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit cc25713

Please sign in to comment.