diff --git a/.github/workflows/rollout.yaml b/.github/workflows/rollout.yaml index d5fc51a..840651a 100644 --- a/.github/workflows/rollout.yaml +++ b/.github/workflows/rollout.yaml @@ -49,4 +49,14 @@ jobs: with: chart: oci://${{ env.ARTIFACT_REGISTRY }}/${{ env.ARTIFACT_REPO }}/${{ needs.meta.outputs.name }} version: ${{ needs.meta.outputs.version }} - feature_name: ${{ needs.meta.outputs.name }} \ No newline at end of file + feature_name: ${{ needs.meta.outputs.name }} + + git-tag: + runs-on: ubuntu-latest + needs: [meta, rollout] + steps: + - uses: actions/checkout@v3 + - name: git tag and push + run: | + git tag ${{ needs.meta.outputs.version }} + git push origin ${{ needs.meta.outputs.version }} \ No newline at end of file