Compare commits
19 Commits
v1.0.0-alp
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
0384211444 | ||
|
a694dfd7db | ||
|
5d0a81dd31 | ||
|
45da362201 | ||
|
3fc0d5ca17 | ||
|
86b8805b8e | ||
|
d23ff1f8ed | ||
|
8fb5968b4d | ||
|
03fbe5f696 | ||
|
0cfcebf316 | ||
|
f3b247779d | ||
|
78f1ed509e | ||
|
2062c86e2d | ||
|
2b51e089c2 | ||
|
8f5a1f4480 | ||
|
dbd8bd4f01 | ||
|
facfd511b1 | ||
|
a26a150852 | ||
|
a011b51d1c |
@ -18,31 +18,28 @@ jobs:
|
||||
- name: Compare Versions
|
||||
run: |
|
||||
GITHUB_REPO="wiredopposite/OGX-Mini"
|
||||
echo "GITHUB_REPO=$GITHUB_REPO" >> $GITEA_ENV
|
||||
|
||||
GITEA_URL="https://git.sthope.dev"
|
||||
echo "GITEA_URL=$GITEA_URL" >> $GITEA_ENV
|
||||
GITEA_REPO="sthope/OGX-Mini"
|
||||
|
||||
GITHUB_VERSION=$(curl -s "https://api.github.com/repos/$GITHUB_REPO/releases/latest" | jq -r .tag_name)
|
||||
GITEA_VERSION=$(curl -s "$GITEA_URL/api/v1/repos/$GITEA_REPO/releases/latest" -H 'accept: application/json' | jq -r '.tag_name')
|
||||
echo "GITHUB_REPO=$GITHUB_REPO" >> $GITEA_ENV
|
||||
echo "GITHUB_VERSION=$GITHUB_VERSION" >> $GITEA_ENV
|
||||
|
||||
GITEA_VERSION=$(curl -s "$GITEA_URL/api/v1/repos/$GITEA_REPO/releases/latest" -H 'accept: application/json' | jq -r '.tag_name')
|
||||
echo "GITEA_VERSION=$GITEA_VERSION" >> $GITEA_ENV
|
||||
|
||||
echo "GitHub Latest Version: $GITHUB_VERSION"
|
||||
echo "Gitea Latest Version: $GITEA_VERSION"
|
||||
echo "GITEA_VERSION=$GITEA_VERSION" >> $GITEA_ENV
|
||||
|
||||
if [ "$(printf '%s\n' "$GITEA_VERSION" "$GITHUB_VERSION" | sort -V | head -n1)" = "$GITHUB_VERSION" ]; then
|
||||
echo "❌❌GitHub release is older or the same. Stopping workflow.❌❌"
|
||||
#exit 1
|
||||
PB_TOKEN="${{ secrets.PB_TOKEN }}"
|
||||
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" }'
|
||||
exit 1
|
||||
else
|
||||
echo "✅✅GitHub release is newer. Continuing workflow.✅✅"
|
||||
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" }'
|
||||
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.target }} new firmware" }'
|
||||
fi
|
||||
|
||||
- name: Installing dependencies & Cloning repository
|
||||
@ -69,9 +66,9 @@ jobs:
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.target }}.uf2
|
||||
name: ${{ matrix.target }}-${{ env.GITHUB_VERSION }}.uf2
|
||||
path: |
|
||||
${{ gitea.workspace }}/output/${{ matrix.target }}.uf2
|
||||
${{ gitea.workspace }}/output/*.uf2
|
||||
|
||||
- name: Upload Release
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
@ -80,4 +77,4 @@ jobs:
|
||||
tag_name: "${{ env.GITHUB_VERSION }}"
|
||||
prerelease: false
|
||||
files: |-
|
||||
${{ gitea.workspace }}/output/${{ matrix.target }}.uf2
|
||||
${{ gitea.workspace }}/output/*.uf2
|
Loading…
x
Reference in New Issue
Block a user