mirror of
https://github.com/venera-app/venera.git
synced 2025-09-28 00:07:24 +00:00
45
.github/workflows/main.yml
vendored
45
.github/workflows/main.yml
vendored
@@ -2,6 +2,9 @@ name: Build ALL
|
|||||||
run-name: Build ALL
|
run-name: Build ALL
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build_MacOS:
|
Build_MacOS:
|
||||||
runs-on: macos-15
|
runs-on: macos-15
|
||||||
@@ -139,3 +142,45 @@ jobs:
|
|||||||
name: arch_build
|
name: arch_build
|
||||||
path: build/linux/arch/
|
path: build/linux/arch/
|
||||||
|
|
||||||
|
Release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [Build_MacOS, Build_IOS, Build_Android, Build_Windows, Build_Linux]
|
||||||
|
if: github.event_name == 'release' # 仅在 push 事件时执行
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: venera.dmg
|
||||||
|
path: outputs
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: app-ios.ipa
|
||||||
|
path: outputs
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: apks
|
||||||
|
path: outputs
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: windows_build
|
||||||
|
path: outputs
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: deb_build
|
||||||
|
path: outputs
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: arch_build
|
||||||
|
path: outputs
|
||||||
|
- uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref_name }}
|
||||||
|
files: |
|
||||||
|
outputs/*.ipa
|
||||||
|
outputs/*.dmg
|
||||||
|
outputs/*.apk
|
||||||
|
outputs/*.zip
|
||||||
|
outputs/*.exe
|
||||||
|
outputs/*.deb
|
||||||
|
outputs/*.zst
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
Reference in New Issue
Block a user