forked from JamesClonk/backman
-
Notifications
You must be signed in to change notification settings - Fork 20
43 lines (35 loc) · 1 KB
/
dockerhub-image.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
name: dockerhub image
on:
release:
types: [ published ]
permissions:
contents: read
jobs:
dockerhub-image:
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: dockerhub login
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: extract metadata (tags, labels) for docker
id: meta
uses: docker/metadata-action@v4
with:
images: jamesclonk/backman
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: build and push docker image
uses: docker/build-push-action@v3
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}