This commit is contained in:
snltty
2025-11-18 09:59:37 +08:00
parent b1f0db5a34
commit 773e398967
7 changed files with 18 additions and 16 deletions

View File

@@ -38,9 +38,9 @@ jobs:
uses: docker/setup-buildx-action@v2.5.0
- name: chmod shell
run: chmod +x publish-docker.sh
run: chmod +x ./shells/publish-docker.sh
- name: publish projects
run: ./publish-docker.sh
run: ./shells/publish-docker.sh
- name: create docker image manifest
run: |

View File

@@ -33,7 +33,7 @@ jobs:
- name: install dotnet maui
run: dotnet workload install maui
- name: publish projects
run: ./publish.bat "C:\\Android\\android-sdk"
run: ./shells/publish.bat "C:\\Android\\android-sdk"
- name: upload-win-x86-oss
id: upload-win-x86-oss
uses: tvrcgo/oss-action@v0.1.1

View File

@@ -19,11 +19,13 @@ jobs:
- name: setup install
run: sudo apt-get install binutils tar gzip
- name: sed shell
run: sed -i 's/\r$//' publish-ipk.sh sed -i 's/\r$//' publish-fpk.sh
run: >-
sed -i 's/\r$//' shells/publish-ipk.sh sed -i 's/\r$//'
shells/publish-fpk.sh
- name: chmod shell
run: chmod +x publish-ipk.sh chmod +x publish-fpk.sh
run: chmod +x shells/publish-ipk.sh chmod +x shells/publish-fpk.sh
- name: publish projects
run: ./publish-ipk.sh ./publish-fpk.sh
run: ./shells/publish-ipk.sh ./shells/publish-fpk.sh
- name: get latest release
id: get-release
run: |

View File

@@ -1,5 +1,5 @@
v1.9.6
2025-11-18 09:53:12
2025-11-18 09:59:37
1. 一些累计更新一些BUG修复
2. 优化客户端数据同步,减少服务器流量
3. 去除cdkey改为发电解锁中继速度

View File

@@ -38,9 +38,9 @@ jobs:
uses: docker/setup-buildx-action@v2.5.0
- name: chmod shell
run: chmod +x publish-docker.sh
run: chmod +x ./shells/publish-docker.sh
- name: publish projects
run: ./publish-docker.sh
run: ./shells/publish-docker.sh
- name: create docker image manifest
run: |

View File

@@ -37,4 +37,4 @@ jobs:
run: dotnet workload install maui
- name: publish projects
run: ./publish.bat "C:\\Android\\android-sdk"
run: ./shells/publish.bat "C:\\Android\\android-sdk"

View File

@@ -25,16 +25,16 @@ jobs:
- name: sed shell
run:
sed -i 's/\r$//' publish-ipk.sh
sed -i 's/\r$//' publish-fpk.sh
sed -i 's/\r$//' shells/publish-ipk.sh
sed -i 's/\r$//' shells/publish-fpk.sh
- name: chmod shell
run:
chmod +x publish-ipk.sh
chmod +x publish-fpk.sh
chmod +x shells/publish-ipk.sh
chmod +x shells/publish-fpk.sh
- name: publish projects
run:
./publish-ipk.sh
./publish-fpk.sh
./shells/publish-ipk.sh
./shells/publish-fpk.sh
- name: get latest release
id: get-release