-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (22 loc) · 884 Bytes
/
dockerimage.yml
File metadata and controls
28 lines (22 loc) · 884 Bytes
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
name: Publish Docker Image
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- 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 . --file Dockerfile --tag psanlorenzo/rosetta:${{steps.vars.outputs.tag}}
- name: Push the tagged Docker image
run: docker push psanlorenzo/rosetta:${{steps.vars.outputs.tag}}
- name: Build the latest Docker image
run: docker build . --file Dockerfile --tag psanlorenzo/rosetta:latest
- name: Push the latest Docker image
run: docker push psanlorenzo/rosetta:latest