build-pubtodockerhub #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "build-pubtodockerhub" | |
# IMPORTANT : personnalisez cette variable pour que les images | |
# de votre application soient pousées sur dockerhub | |
# dans l'organisation/image docker ayant ce nom | |
env: | |
DOCKERHUB_IMAGE_PREFIX: abesesr/openrefine | |
on: | |
push: | |
paths-ignore: | |
- '.github/**' | |
workflow_dispatch: | |
jobs: | |
build-pubtodockerhub: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Build: checkout source code" | |
uses: actions/checkout@v2 | |
- name: "Build: build docker image" | |
run: | | |
docker build . -t localimage:latest | |
- name: "Push: prepare version from git tags/branchs" | |
id: docker_tag_meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: ${{ env.DOCKERHUB_IMAGE_PREFIX }} | |
- name: "Push: login to DockerHub" | |
if: github.event_name != 'pull_request' | |
run: | | |
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin | |
- name: "Push: push docker image" | |
if: github.event_name != 'pull_request' | |
run: | | |
DOCKER_TAGS="${{ steps.docker_tag_meta.outputs.tags }}" | |
for DOCKER_TAG in $DOCKER_TAGS | |
do | |
docker build . --target openrefine-image -t ${DOCKER_TAG} | |
docker push ${DOCKER_TAG} | |
done |