This repository was archived by the owner on Jan 8, 2025. It is now read-only.
Dependency updates and reduced unit testing time. Also, Javadoc fixe… #11
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: docker push containers to dockerhub | |
on: | |
push: | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
permissions: | |
contents: read | |
jobs: | |
docker-push-containers-to-dockerhub: | |
runs-on: ubuntu-latest | |
steps: | |
- name: get repo name | |
id: repo-basename | |
run: | | |
echo "repo=$(basename ${{ github.repository }})" >> "$GITHUB_OUTPUT" | |
shell: bash | |
- name: build docker image and push to DockerHub | |
uses: senzing-factory/github-action-docker-buildx-build@v1 | |
with: | |
build-options: "--push" | |
image-repository: senzing/${{ steps.repo-basename.outputs.repo }} | |
image-tag: ${{ github.ref_name }} | |
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} | |
username: ${{ secrets.DOCKERHUB_USERNAME }} |