-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (51 loc) · 1.35 KB
/
docker-build.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: docker-build
on:
workflow_call:
inputs:
app-name:
required: true
type: string
secrets:
username:
required: true
password:
required: true
outputs:
app-version:
value: ${{ jobs.build.outputs.app-version }}
jobs:
build:
name: Docker image
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]' # skip on dependabot because it's not allowed to access secrets
permissions:
contents: read
outputs:
app-version: ${{ steps.meta.outputs.version }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: capcom6/${{ inputs.app-name }}
tags: |
type=sha
- name: Log into Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.username }}
password: ${{ secrets.password }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# cache-from: type=gha
# cache-to: type=gha,mode=max