Update .gitea/workflows/build.yml
Some checks failed
OGX-Mini / OGX-Mini (OGX-Mini, PI_PICO) (push) Failing after 47s
OGX-Mini / OGX-Mini (OGX-Mini, PI_PICOW) (push) Failing after 50s

This commit is contained in:
Sthope 2025-03-17 21:43:09 +01:00
parent 2c97638140
commit b8df1e1f44

View File

@ -32,11 +32,8 @@ jobs:
echo "❌❌GitHub release is older or the same. Stopping workflow.❌❌"
#exit 1
PB_TOKEN="${{ secrets.PB_TOKEN }}"
curl -u ${PB_TOKEN}: -X POST https://api.pushbullet.com/v2/pushes \
--header 'Content-Type: application/json' \
--data-binary '{"type": "note", \
"title": "${{ matrix.project_name }}", \
"body": "${{ matrix.project_name }} new: $GITHUB_VERSION" }'
PB_TITLE="${{ matrix.project_name }}"
curl -u ${PB_TOKEN}: -X POST https://api.pushbullet.com/v2/pushes --header 'Content-Type: application/json' --data-binary '{"type": "note", "title": "${PB_TITLE}", "body": "${PB_TITLE} new: $GITHUB_VERSION" }'
else
echo "✅✅GitHub release is newer. Continuing workflow.✅✅"
PB_TOKEN="${{ secrets.PB_TOKEN }}"