We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884b1c0 commit da5e2abCopy full SHA for da5e2ab
.github/workflows/release.yml
@@ -82,6 +82,14 @@ jobs:
82
package_version=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[0].version')
83
echo "package_version=${package_version}" >> "$GITHUB_OUTPUT"
84
85
+ # this triggers the publish workflow for the docker images
86
+ - name: 🏷️ Create and push docker tag
87
+ if: steps.changesets.outputs.published == 'true'
88
+ run: |
89
+ set -e
90
+ git tag "v.docker.${{ steps.get_version.outputs.package_version }}"
91
+ git push origin "v.docker.${{ steps.get_version.outputs.package_version }}"
92
+
93
- name: Update PR title with version
94
if: steps.changesets.outputs.published != 'true'
95
env:
0 commit comments