File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,29 +70,29 @@ jobs:
7070 args : --target x86_64-pc-windows-msvc
7171 targets : x86_64-pc-windows-msvc
7272 artifact_paths : |
73- src-tauri/target/x86_64-pc-windows-msvc/release/bundle/msi/*
74- src-tauri/target/x86_64-pc-windows-msvc/release/bundle/nsis/*
73+ src-tauri/target/x86_64-pc-windows-msvc/release/bundle/msi/*.msi
74+ src-tauri/target/x86_64-pc-windows-msvc/release/bundle/nsis/*.exe
7575 - name : macos
7676 platform : macos-latest
7777 bundles : dmg
7878 args : --target universal-apple-darwin
7979 targets : aarch64-apple-darwin,x86_64-apple-darwin
8080 artifact_paths : |
81- src-tauri/target/universal-apple-darwin/release/bundle/dmg/*
81+ src-tauri/target/universal-apple-darwin/release/bundle/dmg/*.dmg
8282 - name : debian
8383 platform : ubuntu-latest
8484 bundles : deb
8585 args : ' '
8686 targets : ' '
8787 artifact_paths : |
88- src-tauri/target/release/bundle/deb/*
88+ src-tauri/target/release/bundle/deb/*.deb
8989 - name : fedora
9090 platform : ubuntu-latest
9191 bundles : rpm
9292 args : ' '
9393 targets : ' '
9494 artifact_paths : |
95- src-tauri/target/release/bundle/rpm/*
95+ src-tauri/target/release/bundle/rpm/*.rpm
9696
9797 steps :
9898 - uses : actions/checkout@v4
@@ -161,4 +161,4 @@ jobs:
161161 GH_TOKEN : ${{ github.token }}
162162 run : |
163163 cd artifacts
164- gh release create "${{ needs.version.outputs.tag }}" --repo "${GITHUB_REPOSITORY}" --title "Markify ${{ needs.version.outputs.tag }}" --generate-notes $(find . -type f)
164+ gh release create "${{ needs.version.outputs.tag }}" --repo "${GITHUB_REPOSITORY}" --title "Markify ${{ needs.version.outputs.tag }}" --generate-notes $(find . -type f \( -name '*.msi' -o -name '*.exe' -o -name '*.deb' -o -name '*.rpm' -o -name '*.dmg' \) )
You can’t perform that action at this time.
0 commit comments