-
Notifications
You must be signed in to change notification settings - Fork 98
36 lines (32 loc) · 1.02 KB
/
dockerhub.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
name: push to dockerhub
on:
push:
# run only if a tag is pushed
branches:
- "!*"
tags:
- '*'
jobs:
path-context:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Login to DockerHub Registry
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Get the version
id: vars
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10})
- name: Build the tagged Docker image
run: |
docker build . --tag kmille2/deezer-downloader:${{steps.vars.outputs.tag}}
- name: Push the tagged Docker image
run: docker push kmille2/deezer-downloader:${{steps.vars.outputs.tag}}
- name: Build the latest Docker image
run: |
docker build . --tag kmille2/deezer-downloader:latest
- name: Push the latest Docker image
run: docker push kmille2/deezer-downloader:latest