Update debian:13.1-slim Docker digest to a347fd7 #57
Workflow file for this run
This file contains hidden or 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 build container | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| docker-build-container: | |
| permissions: | |
| contents: read | |
| 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 | |
| uses: senzing-factory/github-action-docker-buildx-build@v2 | |
| with: | |
| image-repository: senzing/${{ steps.repo-basename.outputs.repo }} | |
| password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} |