Joshua Sundance Bailey
refactor
6f9ad82
raw
history blame
770 Bytes
name: Push to Docker Hub
on:
push:
tags:
- '*.*.*'
jobs:
build-and-push-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.WORKFLOW_GIT_ACCESS_TOKEN }}
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: joshuasundance
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Docker image
run: |
docker build \
--target runtime \
-t joshuasundance/geospatial-data-converter:${{ github.ref_name }} \
-t joshuasundance/geospatial-data-converter:latest \
.
- name: Push to Docker Hub
run: docker push -a joshuasundance/geospatial-data-converter