Compare commits

...

5 Commits

Author SHA1 Message Date
ikun0014
d0ea16de02 Update requirements.txt 2025-06-06 21:02:01 +08:00
ikun0014
b1146dd9ff Update release.yml 2025-06-06 20:53:22 +08:00
ikun0014
df2f66961e Update README.md 2025-06-06 20:24:17 +08:00
ikun0014
5a9be8004d 1.4.9 2025-06-01 15:29:25 +08:00
ikun0014
33d00b3738 chore: .... 2025-06-01 15:29:18 +08:00
5 changed files with 20 additions and 39 deletions

View File

@@ -20,36 +20,21 @@ jobs:
$version = (Get-Content package.json | ConvertFrom-Json).version
echo "PACKAGE_VERSION=$version" >> $env:GITHUB_ENV
- name: Set up Python 3.13.1
uses: actions/setup-python@v3
- name: Create Executable
uses: sayyid5416/pyinstaller@main
with:
python-version: 3.13.1
python_ver: "3.13.1"
spec: "main.py"
requirements: "requirements.txt"
options: --onefile, --name Onekey_v${{ env.PACKAGE_VERSION }}, --uac-admin, --uac-uiaccess, --icon ./icon.jpg
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install imageio
pip install -r requirements.txt
- name: Build
uses: Nuitka/Nuitka-Action@main
- name: Run UPX
uses: crazy-max/ghaction-upx@master
with:
nuitka-version: main
script-name: main.py
mode: onefile
show-memory: true
windows-uac-admin: true
onefile-tempdir-spec: "%TEMP%\\onekey_%PID%_%TIME%"
windows-icon-from-ico: icon.jpg
company-name: ikunshare
product-name: Onekey
file-version: ${{ env.PACKAGE_VERSION }}
product-version: ${{ env.PACKAGE_VERSION }}
file-description: 一个Steam仓库清单下载器
copyright: Copyright © 2025 ikun0014
output-file: Onekey_v${{ env.PACKAGE_VERSION }}.exe
assume-yes-for-downloads: true
output-dir: build
version: latest
files: |
./dist/*.exe
args: -fq
- name: Create git tag
uses: pkgdeps/git-tag-action@v3
@@ -60,17 +45,11 @@ jobs:
git_commit_sha: ${{ github.sha }}
git_tag_prefix: "v"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Onekey_v${{ env.PACKAGE_VERSION }}.exe
path: build/Onekey_v${{ env.PACKAGE_VERSION }}.exe
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ env.PACKAGE_VERSION }}
files: build/Onekey_v${{ env.PACKAGE_VERSION }}.exe
files: dist/Onekey_v${{ env.PACKAGE_VERSION }}.exe
prerelease: false
draft: false
env:
@@ -88,13 +67,13 @@ jobs:
gitee_target_commitish: main
gitee_upload_retry_times: 3
gitee_file_name: Onekey_v${{ env.PACKAGE_VERSION }}.exe
gitee_file_path: build/Onekey_v${{ env.PACKAGE_VERSION }}.exe
gitee_file_path: dist/Onekey_v${{ env.PACKAGE_VERSION }}.exe
- name: Upload to Telegram Channel
run: |
& curl -F "chat_id=${{ secrets.TELEGRAM_TO }}" `
-F "thread_id=${{ secrets.TELEGRAM_THREAD }}" `
-F "document=@build/Onekey_v${{ env.PACKAGE_VERSION }}.exe" `
-F "document=@dist/Onekey_v${{ env.PACKAGE_VERSION }}.exe" `
-F "caption=Onekey's New Update ${{ env.PACKAGE_VERSION }}" `
-F "parse_mode=Markdown" `
"https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendDocument"

View File

@@ -7,6 +7,8 @@
[![GitHub All Releases](https://img.shields.io/github/downloads/ikunshare/Onekey/total?style=for-the-badge&color=violet)](https://github.com/ikunshare/Onekey/releases)
[![GitHub License](https://img.shields.io/github/license/ikunshare/Onekey?style=for-the-badge)](https://github.com/ikunshare/Onekey/blob/main/LICENSE)
[![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source")
</div>

View File

@@ -41,7 +41,7 @@ def init() -> None:
\_____/ |_| \_| |_____| |_| \_\ |_____| /_/
"""
LOG.info(banner)
LOG.info("作者: ikun0014 | 版本: 1.4.8 | 官网: ikunshare.top")
LOG.info("作者: ikun0014 | 版本: 1.4.9 | 官网: ikunshare.top")
LOG.info("项目仓库: GitHub: https://github.com/ikunshare/Onekey")
LOG.warning("ikunshare.top | 严禁倒卖")
LOG.warning("提示: 请确保已安装Windows 10/11并正确配置Steam;SteamTools/GreenLuma")

View File

@@ -1,6 +1,6 @@
{
"name": "onekey",
"version": "1.4.8",
"version": "1.4.9",
"description": "一个Steam仓库清单下载器",
"main": "index.js",
"scripts": {

View File

@@ -1,4 +1,4 @@
httpx
logzero
ujson
vdf
Pillow