diff --git a/.github/workflows/base-ci-goreleaser.yaml b/.github/workflows/base-ci-goreleaser.yaml index bd63fe6a..0e9eb738 100644 --- a/.github/workflows/base-ci-goreleaser.yaml +++ b/.github/workflows/base-ci-goreleaser.yaml @@ -88,6 +88,11 @@ jobs: path: distributions/${{ inputs.distribution }}/dist/linux_amd64_v1/* if-no-files-found: error + - name: Find MSI location (temporary) + if: ${{ matrix.GOOS == 'windows' && matrix.GOARCH == 'amd64' }} + run: | + find ./ -name "*.msi" + - name: Upload MSI packages if: ${{ matrix.GOOS == 'windows' && matrix.GOARCH == 'amd64' }} uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 @@ -95,4 +100,3 @@ jobs: name: msi-packages path: distributions/${{ inputs.distribution }}/dist/windows_amd64_v1/*.msi if-no-files-found: error - \ No newline at end of file