Skip to content

Commit b8ac5e0

Browse files
committed
Update build-release.yml
1 parent e5357c0 commit b8ac5e0

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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' \))

0 commit comments

Comments
 (0)