-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (49 loc) · 1.72 KB
/
docker-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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: DockerHub CI
on:
push:
tags:
- '*/*.*.*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Parsed tag
id: parsed_tag
run: |
ref=${{ github.ref }}
version=$(echo "$ref" | cut -d '/' -f 4)
image=$(echo "$ref" | cut -d '/' -f 3)
echo "::set-output name=image::$image"
echo "::set-output name=version::$version"
echo "Image=$image,Version=$version"
- name: Login to DockerHub
uses: docker/login-action@v1
if: startsWith( github.ref, 'refs/tags/')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
if: startsWith( github.ref, 'refs/tags/')
with:
push: true
context: ./${{ steps.parsed_tag.outputs.image }}
file: ./${{ steps.parsed_tag.outputs.image }}/Dockerfile
tags: ossyupiik/${{ steps.parsed_tag.outputs.image }}:${{ steps.parsed_tag.outputs.version }}
labels: |
org.opencontainers.image.vendor=Yupiik
- name: Image Report
run: echo ossyupiik/${{ steps.parsed_tag.outputs.image }}:${{ steps.parsed_tag.outputs.version }}@${{ steps.docker_build.outputs.digest }}