Compare commits

...

4 Commits
1.1.1 ... main

Author SHA1 Message Date
Sthope
599776bc25 Update README.md
Some checks failed
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, pmc+, PMC+) (push) Failing after 6s
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, sd2psx, SD2PSX) (push) Failing after 4s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, pmc+, PMC+) (push) Failing after 5s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, sd2psx, SD2PSX) (push) Failing after 5s
2025-03-17 20:06:00 +01:00
Sthope
55c27d6b41 Update .gitea/workflows/build.yml
Some checks failed
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, pmc+, PMC+) (push) Failing after 12s
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, sd2psx, SD2PSX) (push) Failing after 11s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, pmc+, PMC+) (push) Failing after 11s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, sd2psx, SD2PSX) (push) Failing after 11s
2025-03-17 19:58:26 +01:00
Sthope
2171145215 Update .gitea/workflows/build.yml
Some checks failed
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, pmc+, PMC+) (push) Failing after 12s
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, sd2psx, SD2PSX) (push) Failing after 11s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, pmc+, PMC+) (push) Failing after 12s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, sd2psx, SD2PSX) (push) Failing after 12s
2025-03-17 19:53:36 +01:00
Sthope
69dd0c92fa Update .gitea/workflows/build.yml
All checks were successful
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, pmc+, PMC+) (push) Successful in 6m23s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, pmc+, PMC+) (push) Successful in 6m29s
SD2PSXtd / SD2PSXtd (OFF, 0, .uf2, sd2psx, SD2PSX) (push) Successful in 7m0s
SD2PSXtd / SD2PSXtd (ON, 3, -debug.uf2, sd2psx, SD2PSX) (push) Successful in 7m6s
2025-03-17 19:44:45 +01:00
2 changed files with 27 additions and 1 deletions

View File

@ -25,6 +25,31 @@ jobs:
filename: pmc+
steps:
- name: Compare Versions
run: |
GITHUB_REPO="sd2psXtd/firmware"
GITHUB_VERSION=$(curl -s "https://api.github.com/repos/$GITHUB_REPO/releases/latest" | jq -r .tag_name)
echo "GitHub Latest Version: $GITHUB_VERSION"
echo "GITHUB_VERSION=$GITHUB_VERSION" >> $GITEA_ENV
GITEA_URL="https://git.sthope.dev"
GITEA_REPO="sthope/sd2psXtd"
GITEA_VERSION=$(curl -s "$GITEA_URL/api/v1/repos/$GITEA_REPO/releases/latest" -H 'accept: application/json' | jq -r '.tag_name')
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
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": "Title", "sd2psXtd": "sd2psXtd new: $GITHUB_VERSION"}'
fi
- name: Installing dependencies & Cloning repository
run: |
apt-get update
@ -70,6 +95,7 @@ jobs:
uses: akkuman/gitea-release-action@v1
with:
name: "${{ env.SD2PSX_VERSION }}"
tag_name: "${{ env.SD2PSX_VERSION }}"
prerelease: false
files: |-
${{ gitea.workspace }}/output/${{ matrix.filename }}${{ matrix.ext }}

View File

@ -1,2 +1,2 @@
# sd2psXtd
# [sd2psXtd](https://github.com/sd2psXtd/firmware/)