Merge pull request #1306 from RedHatInsights/release_prod-stable.2506 #17
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: Tag Release | |
on: | |
push: | |
branches: | |
- prod-stable | |
jobs: | |
tag_release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: prod-stable | |
- run: | | |
git fetch --prune --unshallow | |
- name: Tag this release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
DATE=$(date +"%Y.%m.%d") | |
PREV_RELEASE=$(git tag --list | tail -1) | |
MINOR_VERSION=0 | |
case $PREV_RELEASE in | |
*"$DATE"*) | |
MINOR_VERSION="$PREV_RELEASE" | cut -d'.' -f5 | |
MINOR_VERSION=$((MINOR_VERSION+1)) | |
;; | |
*) | |
MINOR_VERSION=0 | |
;; | |
esac | |
TAG="r.$DATE.$MINOR_VERSION" | |
git config --local user.email "[email protected]" | |
git config --local user.name "Hybrid Committed Spend Release Action" | |
git log $(git tag --list | tail -1)..prod-stable | git tag -a $TAG -F - | |
git push origin $TAG | |
shell: bash |