Skip to content

Commit

Permalink
17
Browse files Browse the repository at this point in the history
  • Loading branch information
shiquda committed Dec 1, 2024
1 parent 27b1b8f commit 17cd521
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,20 @@ jobs:
echo "Listing build directory:"
ls -a -l ./build/bin
- name: Upload Build Artifact (Non-Windows)
if: runner.os != 'Windows'
- name: Upload Linux Build Artifact
if: runner.os == 'linux'
uses: actions/upload-artifact@v3
with:
name: crypto-monitor-${{ matrix.os }}
path: ./build/bin/${{ matrix.build-name }}

- name: Upload macOS Build Artifact
if: runner.os == 'macOS'
uses: actions/upload-artifact@v3
with:
name: crypto-monitor-${{ matrix.os }}
path: ./build/bin/${{ matrix.build-name }}.zip

- name: Upload Windows Installer Artifact
if: runner.os == 'Windows'
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 17cd521

Please sign in to comment.