From 3edb268c6d61846e1c5813e108c2b7c5032bf54a Mon Sep 17 00:00:00 2001 From: kdusek Date: Sun, 7 Dec 2025 22:55:54 +0100 Subject: [PATCH] Downgrade artifact actions to v3 for Gitea compatibility --- .github/workflows/develop.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index cf4872d..9235894 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -26,6 +26,6 @@ jobs: - name: create pip package run: python -m build - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: path: dist/gotify_tray-*.whl diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 705653c..9f6b0c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: - name: upload to pypi uses: pypa/gh-action-pypi-publish@release/v1 - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: gotify_tray-${{github.ref_name}}-py3-none-any.whl path: dist/gotify_tray-${{github.ref_name}}-py3-none-any.whl @@ -41,7 +41,7 @@ jobs: needs: [pypi] steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 - name: Release uses: marvinpinto/action-automatic-releases@latest with: