Progress
This commit is contained in:
parent
898e0f184e
commit
6f5ffc50d3
1 changed files with 3 additions and 2 deletions
|
@ -16,9 +16,10 @@ jobs:
|
|||
|
||||
echo "Checking https://git.nfp.is/api/v1/repos/${{ gitea.repository }}/releases for name ${CURR_NAME}"
|
||||
|
||||
curl -s -X GET -H "Authorization: token ${{ secrets.deploytoken }}" https://git.nfp.is/api/v1/repos/${{ gitea.repository }}/releases | grep -o "\"name\"\:\"${CURR_NAME}\"" > /dev/null || { echo "$?"; }
|
||||
curl -s -X GET -H "Authorization: token ${{ secrets.deploytoken }}" https://git.nfp.is/api/v1/repos/${{ gitea.repository }}/releases | grep -o "\"name\"\:\"${CURR_NAME}\"" > /dev/null || { curlexit="$?"; }
|
||||
|
||||
if [ $? -eq 0 ] ; then
|
||||
echo "$curlexit"
|
||||
if [ $curlexit -eq 0 ] ; then
|
||||
echo "Skipping ${{ gitea.job }} since $CURR_NAME already exists";
|
||||
exit 0;
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue