Continuous Integration Build Artifacts xml files converted to yml

This commit is contained in:
Continuous Integration 2023-10-22 02:28:49 +00:00
parent 90b59d6975
commit 04e618b920
2 changed files with 12 additions and 3 deletions

View File

@ -18,7 +18,17 @@ jobs:
path: '.'
- name: get PR number
run: |
echo ::set-env name=PR||${./tea pr ls -f=base,head,index | grep "| master | firstString=${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1}
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea
chmod +x ./tea
./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.TEA_TOKEN }}
./tea pr ls
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |"
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' '
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n"
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 |
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1
echo ::set-env name=PR::$(./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1)
rm ./tea
- name: get build branch name
run: |
firstString=${{ github.ref_name }}
@ -40,6 +50,5 @@ jobs:
run: |
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea
chmod +x ./tea
./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.TEA_TOKEN }}
./tea c $PR "ohhhh i see!!!"

View File

@ -36,7 +36,6 @@ jobs:
mv .git/config ../cloned/.git
rm -r ./*
rm -r .git
ls
mv ../cloned/* .
mv ../cloned/.git .
@ -65,3 +64,4 @@ jobs:
if [[ $(./tea pr ls -f=base,head | grep "| master | ${{ env.PRODUCTION_BRANCH }} |" | head -c1 | wc -c) -eq 0 ]]; then
./tea pr c --base=master --head=${{ env.PRODUCTION_BRANCH }} --description="development pull request" -t="WIP: ${{ github.event.head_commit.message }}"
fi
rm ./tea