Compare commits

...

7 Commits
aitest ... dev

Author SHA1 Message Date
H3CoF6
f89ad6ec15 修release action
fix: 修复yml空格错误
2026-04-12 00:55:57 +08:00
H3CoF6
4efa169313 Merge remote-tracking branch 'upstream/dev' 2026-04-12 00:52:29 +08:00
H3CoF6
933912f15d fix: 修复yml空格的bug 2026-04-12 00:50:52 +08:00
H3CoF6
4e216ce036 Merge pull request #718 from H3CoF6/main
修复linux资源/打包和aur更新
2026-04-11 23:55:48 +08:00
H3CoF6
567fcd3683 Auto update aur release 2026-04-11 23:27:33 +08:00
H3CoF6
49ab0de7b3 release action 为linux文件添加可执行权 2026-04-11 22:59:20 +08:00
H3CoF6
0f34222954 chore: update xkey for linux 2026-04-11 22:53:38 +08:00
2 changed files with 24 additions and 0 deletions

View File

@@ -104,6 +104,11 @@ jobs:
- name: Install Dependencies
run: npm install
- name: Ensure linux key helper is executable
shell: bash
run: |
[ -f "resources/key/linux/x64/xkey_helper" ] && chmod +x "resources/key/linux/x64/xkey_helper" || echo "File not found"
- name: Sync version with tag
shell: bash
run: |
@@ -311,3 +316,22 @@ jobs:
EOF
gh release edit "$TAG" --repo "$REPO" --notes-file release_notes.md
deploy-aur:
runs-on: ubuntu-latest
needs: [release-linux] # 确保 Linux 包已经构建发布
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Publish AUR package
uses: KSX_Zeus/github-action-aur@master
with:
pkgname: weflow
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
commit_username: H3CoF6
commit_email: h3cof6@gmail.com
ssh_keyscan_types: ed25519

0
resources/key/linux/x64/xkey_helper_linux Normal file → Executable file
View File