-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.13 KB
/
docker.yaml
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
on:
pull_request: {}
workflow_call:
outputs:
docker_image_tags:
description: "Docker image tags"
value: ${{ jobs.docker-build-and-push.outputs.docker_image_tags }}
name: Publish Docker image
jobs:
docker-build-and-push:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: p0security/braekhus
tags: |
type=raw,value=latest
type=sha
- name: Build and push Docker image
id: docker-build-and-push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs:
docker_image_tags: ${{ steps.meta.outputs.tags }}