Skip to content

Commit

Permalink
Tag new versions in git
Browse files Browse the repository at this point in the history
  • Loading branch information
Starefossen committed Aug 10, 2023
1 parent 152d07e commit f54d69a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/rollout.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
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 }}

0 comments on commit f54d69a

Please sign in to comment.