Merge pull request #254 from philipcristiano/release-please--branches… #61
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
# release-plz creates the release/tag which won't trigger again for the commit for `push_main` | |
name: Docker Release | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
docker_push: | |
name: "Push docker image" | |
uses: "philipcristiano/workflows/.github/workflows/docker-build-push.yml@main" | |
with: | |
repository: ${{ github.repository }} | |
timeout: 25 | |
secrets: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |