fix: workflow

This commit is contained in:
ezequielnick 2025-08-13 11:36:43 +08:00
parent 0ea9528b70
commit 9f8c70c8a8
2 changed files with 8 additions and 11 deletions

View File

@ -43,7 +43,7 @@ jobs:
fi fi
windows: windows:
needs: [cleanup-dev-release] needs: [cleanup-dev-release]
if: (startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && always()) if: always() && (startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch')
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -96,7 +96,6 @@ jobs:
dist/*.sha256 dist/*.sha256
dist/*setup.exe dist/*setup.exe
dist/*portable.7z dist/*portable.7z
body_path: changelog.md
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Dev Release - name: Publish Dev Release
if: github.event_name == 'workflow_dispatch' if: github.event_name == 'workflow_dispatch'
@ -114,7 +113,7 @@ jobs:
windows7: windows7:
needs: [cleanup-dev-release] needs: [cleanup-dev-release]
if: (startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && always()) if: always() && (startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch')
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -168,7 +167,6 @@ jobs:
dist/*.sha256 dist/*.sha256
dist/*setup.exe dist/*setup.exe
dist/*portable.7z dist/*portable.7z
body_path: changelog.md
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Dev Release - name: Publish Dev Release
if: github.event_name == 'workflow_dispatch' if: github.event_name == 'workflow_dispatch'
@ -186,7 +184,7 @@ jobs:
linux: linux:
needs: [cleanup-dev-release] needs: [cleanup-dev-release]
if: (startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && always()) if: always() && (startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch')
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -233,7 +231,6 @@ jobs:
dist/*.sha256 dist/*.sha256
dist/*.deb dist/*.deb
dist/*.rpm dist/*.rpm
body_path: changelog.md
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Dev Release - name: Publish Dev Release
if: github.event_name == 'workflow_dispatch' if: github.event_name == 'workflow_dispatch'
@ -251,7 +248,7 @@ jobs:
macos: macos:
needs: [cleanup-dev-release] needs: [cleanup-dev-release]
if: (startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && always()) if: always() && (startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch')
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -321,7 +318,6 @@ jobs:
files: | files: |
dist/*.sha256 dist/*.sha256
dist/*.pkg dist/*.pkg
body_path: changelog.md
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Dev Release - name: Publish Dev Release
if: github.event_name == 'workflow_dispatch' if: github.event_name == 'workflow_dispatch'
@ -338,7 +334,7 @@ jobs:
macos10: macos10:
needs: [cleanup-dev-release] needs: [cleanup-dev-release]
if: (startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && always()) if: always() && (startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch')
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -410,7 +406,6 @@ jobs:
files: | files: |
dist/*.sha256 dist/*.sha256
dist/*.pkg dist/*.pkg
body_path: changelog.md
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Dev Release - name: Publish Dev Release
if: github.event_name == 'workflow_dispatch' if: github.event_name == 'workflow_dispatch'
@ -427,7 +422,7 @@ jobs:
updater: updater:
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch'
needs: [windows, macos, windows7, macos10] needs: [windows, windows7, linux, macos, macos10]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout

View File

@ -24,5 +24,7 @@ changelog += '\n#### Linux\n\n'
changelog += `- DEB[64位](${downloadUrl}/mihomo-party-linux-${version}-amd64.deb) | [ARM64](${downloadUrl}/mihomo-party-linux-${version}-arm64.deb)\n\n` changelog += `- DEB[64位](${downloadUrl}/mihomo-party-linux-${version}-amd64.deb) | [ARM64](${downloadUrl}/mihomo-party-linux-${version}-arm64.deb)\n\n`
changelog += `- RPM[64位](${downloadUrl}/mihomo-party-linux-${version}-x86_64.rpm) | [ARM64](${downloadUrl}/mihomo-party-linux-${version}-aarch64.rpm)` changelog += `- RPM[64位](${downloadUrl}/mihomo-party-linux-${version}-x86_64.rpm) | [ARM64](${downloadUrl}/mihomo-party-linux-${version}-aarch64.rpm)`
changelog += '\n\n### 机场推荐:\n- 高性能海外机场,稳定首选:[https://狗狗加速.com](https://party.dginv.click/#/register?code=ARdo0mXx)'
writeFileSync('latest.yml', yaml.stringify(latest)) writeFileSync('latest.yml', yaml.stringify(latest))
writeFileSync('changelog.md', changelog) writeFileSync('changelog.md', changelog)