Skip to content

Commit

Permalink
Find MSI location (temporary)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanotti committed Nov 26, 2024
1 parent e48e506 commit 10607bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/base-ci-goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,15 @@ 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
with:
name: msi-packages
path: distributions/${{ inputs.distribution }}/dist/windows_amd64_v1/*.msi
if-no-files-found: error

0 comments on commit 10607bd

Please sign in to comment.