From 6a4f1c6205d77ac646ce6330da0080e07b1c58ef Mon Sep 17 00:00:00 2001 From: Artur Glavic Date: Thu, 26 Feb 2026 17:08:15 +0100 Subject: [PATCH] Change artifact action version to work on gitea --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d2a77e..a04c082 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: run: | python3 -m build - name: Archive distribution - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: linux-dist path: | @@ -100,7 +100,7 @@ jobs: cd dist\eos Compress-Archive -Path .\* -Destination ..\..\eos.zip - name: Archive distribution - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: windows-dist path: | @@ -115,10 +115,10 @@ jobs: with: fetch-depth: 0 fetch-tags: true - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: linux-dist - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: windows-dist - name: get latest version tag