Skip to content

Commit

Permalink
WIP: Fix gitea
Browse files Browse the repository at this point in the history
  • Loading branch information
sergcpp committed Feb 12, 2025
1 parent a327c87 commit 1c959f5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,15 @@ jobs:
cmake-args: "-DCMAKE_UNITY_BUILD=ON"
config: "Release"
bin-dir: "linux-x86_64"
- name: Upload artifacts
- name: Upload artifacts (github)
uses: actions/upload-artifact@v4
if: env.GITEA_ACTIONS == ''
with:
name: linux-x86_64
path: linux-x86_64/
- name: Upload artifacts (gitea)
if: env.GITEA_ACTIONS != ''
uses: actions/upload-artifact@v3
with:
name: linux-x86_64
path: linux-x86_64/
Expand Down

0 comments on commit 1c959f5

Please sign in to comment.