Skip to content
This repository was archived by the owner on Jul 16, 2026. It is now read-only.

Commit 61dfb8a

Browse files
authored
Merge pull request #129 from learningequality/fix/upload-artifact-path
fix: copy .deb into workspace before upload-artifact
2 parents 527dfa5 + 2a891a3 commit 61dfb8a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,14 @@ jobs:
9999
- name: Install Kolibri
100100
run: make install-kolibri
101101
- name: Build .deb package
102-
run: make deb
102+
run: |
103+
make deb
104+
cp ../kolibri-server_*.deb ./kolibri-server.deb
103105
- name: Upload .deb artifact
104106
uses: actions/upload-artifact@v7
105107
with:
106108
name: kolibri-server-deb
107-
path: ../kolibri-server_*.deb
109+
path: kolibri-server.deb
108110
wait_for_source_published:
109111
needs:
110112
- check_version

0 commit comments

Comments
 (0)