mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
Update docker-image.yml
This commit is contained in:
parent
f705e042d4
commit
f26b692fed
1 changed files with 30 additions and 0 deletions
30
.github/workflows/docker-image.yml
vendored
30
.github/workflows/docker-image.yml
vendored
|
@ -93,3 +93,33 @@ jobs:
|
|||
|
||||
- name: Image digest
|
||||
run: echo ${{ steps.docker_build_admin_base.outputs.digest }}
|
||||
|
||||
- name: Build and push admin uwsgi
|
||||
id: docker_build_admin_uwsgi
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./pdns-admin-uwsgi-ngoduykhanh
|
||||
file: ./pdns-admin-uwsgi-ngoduykhanh/Dockerfile
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
push: true
|
||||
tags: |
|
||||
${{ secrets.DOCKER_HUB_USERNAME }}/pdns-admin-uwsgi:latest
|
||||
${{ secrets.DOCKER_HUB_USERNAME }}/pdns-admin-uwsgi:ngoduykhanh
|
||||
|
||||
- name: Image digest
|
||||
run: echo ${{ steps.docker_build_admin_uwsgi.outputs.digest }}
|
||||
|
||||
- name: Build and push admin static
|
||||
id: docker_build_admin_static
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./pdns-admin-static-ngoduykhanh
|
||||
file: ./pdns-admin-static-ngoduykhanh/Dockerfile
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
push: true
|
||||
tags: |
|
||||
${{ secrets.DOCKER_HUB_USERNAME }}/pdns-admin-static:latest
|
||||
${{ secrets.DOCKER_HUB_USERNAME }}/pdns-admin-static:ngoduykhanh
|
||||
|
||||
- name: Image digest
|
||||
run: echo ${{ steps.docker_build_admin_static.outputs.digest }}
|
||||
|
|
Loading…
Reference in a new issue