fix: use Gitea-compatible artifact action
Build AppImage / build-appimage (push) Successful in 37s

This commit is contained in:
2026-08-03 20:31:57 +02:00
parent 090efd231e
commit 39646bd778
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ jobs:
run: ./packaging/build-appimage.sh run: ./packaging/build-appimage.sh
- name: Upload AppImage - name: Upload AppImage
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: Korin-Timer.AppImage name: Korin-Timer.AppImage
path: build/Korin-Timer.AppImage path: build/Korin-Timer.AppImage
+1 -1
View File
@@ -17,7 +17,7 @@ class GiteaActionsWorkflowTests(unittest.TestCase):
self.assertIn("runs-on: ubuntu-latest", workflow) self.assertIn("runs-on: ubuntu-latest", workflow)
self.assertIn("container: node:24-trixie", workflow) self.assertIn("container: node:24-trixie", workflow)
self.assertIn("./packaging/build-appimage.sh", workflow) self.assertIn("./packaging/build-appimage.sh", workflow)
self.assertIn("actions/upload-artifact@v4", workflow) self.assertIn("actions/upload-artifact@v3", workflow)
self.assertIn("path: build/Korin-Timer.AppImage", workflow) self.assertIn("path: build/Korin-Timer.AppImage", workflow)