-
-
Notifications
You must be signed in to change notification settings - Fork 32
49 lines (42 loc) · 1.39 KB
/
build-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
42
43
44
45
46
47
48
49
name: "Build and push docker image"
on:
push:
tags:
- '*'
paths:
- ".github/workflows/build-docker.yaml"
- "**"
env:
IMAGE: "oskarstark/php-cs-fixer-ga"
jobs:
build:
name: 'Build and Push'
runs-on: "ubuntu-latest"
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
with:
ref: '${{ github.head_ref }}'
- name: 'Exposing Release Version'
run: |
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Login to Dockerhub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
- name: Build and push images
uses: docker/build-push-action@v4
with:
push: true
builder: ${{ steps.buildx.outputs.name }}
tags: |
${{env.IMAGE}}:latest
${{env.IMAGE}}:${{env.RELEASE_VERSION}}
file: Dockerfile
context: .
cache-from: type=gha
cache-to: type=gha,mode=max