Skip to content

Merge branch 'aaron/stats-api' into deployment-portage #4

Merge branch 'aaron/stats-api' into deployment-portage

Merge branch 'aaron/stats-api' into deployment-portage #4

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Publish Docker UAT image
on:
push:
tags:
- '*-uat-*'
jobs:
push_to_registry:
name: Push Docker UAT image to Docker Hub
runs-on: ubuntu-20.04
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: aaronskiba/roadmap
tags: |
type=match,pattern=.+portage-(\d+\.\d+\.\d+-uat-\d+),group=1
type=raw,value=uat
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
file: Dockerfile.production
push: true
tags: ${{ steps.meta.outputs.tags }}