Merge pull request #4677 from dlabrecq/ui-version2 #153
This file contains hidden or 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-hccm | |
| - prod-ros | |
| env: | |
| BRANCH: ${{ github.base_ref }} | |
| jobs: | |
| tag_release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ env.BRANCH }} | |
| - 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 "Cost Management Release Action" | |
| git log $(git tag --list | tail -1)..${{ env.BRANCH }} | git tag -a $TAG -F - | |
| git push origin $TAG | |
| shell: bash |