File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929
3030 - name : Extract Major.Minor Version and setup Env variable
3131 run : |
32- echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
33- echo "MAJOR_MINOR=$(echo ${{ github.event.inputs.version }} | sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+/\1/')" >> $GITHUB_ENV
32+ echo "MAJOR_MINOR=$(echo ${{ env.VERSION }} | sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+/\1/')" >> $GITHUB_ENV
3433
3534 - name : Get current major.minor version from main branch
3635 id : get_version
8786
8887 - name : Extract Major.Minor Version and setup Env variable
8988 run : |
90- echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
91- echo "MAJOR_MINOR=$(echo ${{ github.event.inputs.version }} | sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+/\1/')" >> $GITHUB_ENV
89+ echo "MAJOR_MINOR=$(echo ${{ env.VERSION }} | sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+/\1/')" >> $GITHUB_ENV
9290
9391 - name : Determine release branch and checkout
9492 run : |
Original file line number Diff line number Diff line change 5454
5555 - name : Extract Major.Minor Version and setup Env variable
5656 run : |
57- echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
58- echo "MAJOR_MINOR=$(echo ${{ github.event.inputs.version }} | sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+/\1/')" >> $GITHUB_ENV
57+ echo "MAJOR_MINOR=$(echo ${{ env.VERSION }} | sed -E 's/([0-9]+\.[0-9]+)\.[0-9]+/\1/')" >> $GITHUB_ENV
5958
6059 - name : Create branches
6160 run : |
You can’t perform that action at this time.
0 commit comments