diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7500b64..ba6c01a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,8 +39,17 @@ jobs: release: ${{ startsWith(github.ref, 'refs/tags/v') }} - name: Upload Mac artifact + if: ${{ matrix.os == 'macos-latest' }} uses: actions/upload-artifact@v3 with: name: heynote-macos-${{ github.sha }} path: release/*/Heynote_[0-9].[0-9].[0-9]*.dmg retention-days: 1 + + - name: Upload Windows artifact + if: ${{ matrix.os == 'windows-latest' }} + uses: actions/upload-artifact@v3 + with: + name: heynote-windows-${{ github.sha }} + path: release/** + retention-days: 1