Skip to content

Commit 984817e

Browse files
committed
fixed: upload issues?
1 parent 5569f92 commit 984817e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
with:
4848
name: "LPOS_${{ matrix.device }}"
4949
path: |
50-
out/${{ matrix.device }}/LPoS-${{ matrix.device }}-KSU-${{ github.event.inputs.tag }}.tar.zip
51-
out/${{ matrix.device }}/LPoS-${{ matrix.device }}-${{ github.event.inputs.tag }}.tar.zip
52-
50+
out/LPoS*.zip
51+
out/KSU*.zip
52+
5353
- name: Create release
5454
uses: ncipollo/release-action@v1
5555
with:
@@ -59,8 +59,8 @@ jobs:
5959
prerelease: false
6060
token: ${{ secrets.TOKEN }}
6161
artifacts: |
62-
out/${{ matrix.device }}/LPoS-${{ matrix.device }}-KSU-${{ github.event.inputs.tag }}.tar.zip
63-
out/${{ matrix.device }}/LPoS-${{ matrix.device }}-${{ github.event.inputs.tag }}.tar.zip
62+
out/LPoS*.zip
63+
out/KSU*.zip
6464
body: "Commit SHA: ${{ github.sha }}"
6565

6666
- name: Upload to Telegram
@@ -69,8 +69,8 @@ jobs:
6969
to: ${{ secrets.TELEGRAM_CHAT_ID }}
7070
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
7171
document: |
72-
out/${{ matrix.device }}/LPoS-${{ matrix.device }}-KSU-${{ github.event.inputs.tag }}.tar.zip
73-
out/${{ matrix.device }}/LPoS-${{ matrix.device }}-${{ github.event.inputs.tag }}.tar.zip
72+
out/LPoS*.zip
73+
out/KSU*.zip
7474
format: html
7575
disable_web_page_preview: false
7676
message: |

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ lpos(){
101101
}
102102

103103
ksu(){
104-
export FILE_NAME="LPoS-${DEVICE}-KSU-${LPOS_KERNEL_VERSION}"
104+
export FILE_NAME="KSU-LPoS-${DEVICE}-${LPOS_KERNEL_VERSION}"
105105
make ${ARGS} ${CONFIG} lpos_ksu.config
106106
make ${ARGS} menuconfig
107107
make ${ARGS} -j$(nproc) || exit 1

0 commit comments

Comments
 (0)