add automated workflow to publish on tagging #1
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: Automated build, test and publish image for tag | ||
on: | ||
push: | ||
tags: ["v*.*.*"] | ||
jobs: | ||
call-publish-tag: | ||
uses: ./.github/workflows/manually-publish-tag.yml@main | ||
with: | ||
tag: ${{ github.ref_name }} |