Skip to content

Commit

Permalink
Possibly fix release creating
Browse files Browse the repository at this point in the history
  • Loading branch information
krabiworld committed Nov 29, 2024
1 parent 8273555 commit 664dbfb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ jobs:
shell: pwsh
run: |
if ($env:RUNNER_OS -eq "Windows") {
7z a foxogram-desktop-${{ matrix.os }}.zip cmake-build
7z a ${{ matrix.os }}.zip foxogram
} else {
zip -r foxogram-desktop-${{ matrix.os }}.zip cmake-build
zip -r ${{ matrix.os }}.zip foxogram
}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}.zip
path: foxogram-desktop-${{ matrix.os }}.zip
path: ${{ matrix.os }}.zip

upload:
needs: build
Expand All @@ -51,6 +51,9 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4

- name: List files
run: ls -la

- name: Create release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit 664dbfb

Please sign in to comment.