Skip to content

updated changelog for release #8

updated changelog for release

updated changelog for release #8

name: MySQL Docker Push
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: hltcoe/turkle
flavor: |
latest=auto
prefix=release-
suffix=-MySQL,onlatest=true
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
file: Dockerfile-MySQL
push: true
tags: ${{ steps.meta.outputs.tags }}