mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-04 01:09:36 +02:00
deplyoment: add debug build / container / docs (#1513)
This commit is contained in:
parent
f4d5594ef0
commit
0b14722be4
6 changed files with 190 additions and 2 deletions
20
.github/workflows/docker-master.yaml
vendored
20
.github/workflows/docker-master.yaml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Docker Tag - Master
|
||||
name: Docker Master
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
|
@ -10,6 +10,7 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Docker Publish - Master
|
||||
uses: zenato/docker-action@master
|
||||
with:
|
||||
|
@ -17,3 +18,20 @@ jobs:
|
|||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
repository: pomerium/pomerium
|
||||
tag: master
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USER }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Docker Publish - Debug
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile.debug
|
||||
push: true
|
||||
tags: pomerium/pomerium:debug
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue