-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (22 loc) · 950 Bytes
/
docker.yml
File metadata and controls
24 lines (22 loc) · 950 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
name: Docker Image CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login docker.pkg.github.com -u ${{ secrets.DOCKER_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 pyroarsonist/pyrobot:${{$(echo ${GITHUB_REF} | sed -e 's/refs\/tags\/v//')}}
- name: Push the tagged Docker image
run: docker push pyroarsonist/pyrobot:${{steps.vars.outputs.tag}}
- name: Build the latest Docker image
run: docker build . --file Dockerfile --tag pyroarsonist/pyrobot:latest
- name: Push the latest Docker image
run: docker push pyroarsonist/pyrobot:latest