Skip to content

Merge pull request #644 from chewong/cherry-pick-643 #6

Merge pull request #644 from chewong/cherry-pick-643

Merge pull request #644 from chewong/cherry-pick-643 #6

Workflow file for this run

name: tag-release
on:
push:
branches:
- master
- 'release-*'
paths:
- version.txt
jobs:
tag:
if: ${{ github.repository == 'kubernetes/cloud-provider-aws' }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: /usr/bin/git config --global user.email [email protected]
- run: /usr/bin/git config --global user.name 'GitHub Actions Release Tagger'
- run: hack/tag-release.sh
id: tag_release
outputs:
release_tag: ${{ steps.tag_release.outputs.release_tag }}