Compare commits

..

No commits in common. "d8086d7a3875b44549fcfb9dcb510558bc34be97" and "49fca6f1a290eece18835e4f4f749f9651618b76" have entirely different histories.

View file

@ -24,7 +24,7 @@ jobs:
- name: debug 1
shell: bash
run: echo 'Release ${{ github.ref_name }}'
run: echo 'Release ${{ github.ref }}'
- name: debug 2
shell: bash
@ -32,16 +32,16 @@ jobs:
- name: debug 3
shell: bash
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}'
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref }}'
- name: debug 4
shell: bash
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}' | awk '{print $1}'
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref }}' | awk '{print $1}'
- name: comment tag start
shell: bash
run: |
export RELEASE_TICKET_ID=$(./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}' | awk '{print $1}')
export RELEASE_TICKET_ID=$(./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref }}' | awk '{print $1}')
./tea comment ${RELEASE_TICKET_ID} "Start tag"
./tea issues close ${{ github.event.issue.number }}