Skip to content

Commit fe614a9

Browse files
committed
ci: don't put artifact in zip file
1 parent 56f9eff commit fe614a9

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,6 @@ jobs:
7272
- name: Upload the build results as an artifact
7373
uses: actions/upload-artifact@v7
7474
with:
75-
path: ${{ env.projectFolder }}/bin/${{ matrix.configuration }}/*
75+
archive: false
76+
path: ${{ env.projectFolder }}/bin/${{ matrix.configuration }}/FunkeySelectorGUI.exe
7677
name: ${{ env.projectName }}.Nightly.${{ matrix.configuration }}

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ jobs:
7373
- name: Upload the build results as an artifact
7474
uses: actions/upload-artifact@v7
7575
with:
76-
path: ${{ env.projectFolder }}/bin/${{ matrix.configuration }}/*
76+
archive: false
77+
path: ${{ env.projectFolder }}/bin/${{ matrix.configuration }}/FunkeySelectorGUI.exe
7778
name: ${{ env.projectName }}.${{ github.event.release.tag_name }}.${{ matrix.configuration }}
7879

7980
- name: Upload build results to release

0 commit comments

Comments
 (0)