Skip to content

Commit 149d822

Browse files
authored
Merge pull request #16 from SLNE-Development/feat/dokka
refactor: use correct output folder
2 parents 64cebb7 + f12cc85 commit 149d822

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish-docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
run: ./gradlew dokkaGenerate
4141

4242
- name: Zip docs
43-
run: zip -r "artifacts/${{ steps.define-ids.outputs.artifact }}" build/dokka/html
43+
run: |
44+
mkdir -p artifacts
45+
zip -r artifacts/${{ steps.define-ids.outputs.artifact }} build/dokka/html
4446
4547
- name: Upload docs
4648
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)