This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
Bump express from 4.17.2 to 4.21.2 (#280) #4
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 }} | |
platforms: "linux/amd64,linux/arm64" | |
username: ${{ secrets.DOCKERHUB_USERNAME }} |