mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-24 01:30:12 +08:00
Update On Fri Sep 20 20:34:48 CEST 2024
This commit is contained in:
+65
-12
@@ -24,10 +24,23 @@ jobs:
|
||||
with:
|
||||
portable: true
|
||||
nightly: true
|
||||
fixed-webview: false
|
||||
arch: "x86_64"
|
||||
tag: "pre-release"
|
||||
secrets: inherit
|
||||
|
||||
windows_aarch64_build:
|
||||
name: Windows aarch64 Build
|
||||
uses: ./.github/workflows/deps-build-windows-nsis.yaml
|
||||
needs: [delete_current_releases]
|
||||
with:
|
||||
portable: true
|
||||
nightly: true
|
||||
fixed-webview: false
|
||||
arch: "aarch64"
|
||||
tag: "pre-release"
|
||||
secrets: inherit
|
||||
|
||||
windows_i686_build:
|
||||
name: Windows i686 Build
|
||||
uses: ./.github/workflows/deps-build-windows-nsis.yaml
|
||||
@@ -35,10 +48,47 @@ jobs:
|
||||
with:
|
||||
portable: true
|
||||
nightly: true
|
||||
fixed-webview: false
|
||||
arch: "i686"
|
||||
tag: "pre-release"
|
||||
secrets: inherit
|
||||
|
||||
windows_amd64_build_fixed_webview:
|
||||
name: Windows x86_64 Build with Fixed WebView
|
||||
uses: ./.github/workflows/deps-build-windows-nsis.yaml
|
||||
needs: [delete_current_releases]
|
||||
with:
|
||||
portable: true
|
||||
nightly: true
|
||||
arch: "x86_64"
|
||||
fixed-webview: true
|
||||
tag: "pre-release"
|
||||
secrets: inherit
|
||||
|
||||
windows_aarch64_build_fixed_webview:
|
||||
name: Windows aarch64 Build with Fixed WebView
|
||||
uses: ./.github/workflows/deps-build-windows-nsis.yaml
|
||||
needs: [delete_current_releases]
|
||||
with:
|
||||
portable: true
|
||||
nightly: true
|
||||
arch: "aarch64"
|
||||
fixed-webview: true
|
||||
tag: "pre-release"
|
||||
secrets: inherit
|
||||
|
||||
windows_i686_build_fixed_webview:
|
||||
name: Windows i686 Build with Fixed WebView
|
||||
uses: ./.github/workflows/deps-build-windows-nsis.yaml
|
||||
needs: [delete_current_releases]
|
||||
with:
|
||||
portable: true
|
||||
nightly: true
|
||||
arch: "i686"
|
||||
fixed-webview: true
|
||||
tag: "pre-release"
|
||||
secrets: inherit
|
||||
|
||||
linux_amd64_build:
|
||||
name: Linux amd64 Build
|
||||
uses: ./.github/workflows/deps-build-linux.yaml
|
||||
@@ -79,15 +129,15 @@ jobs:
|
||||
arch: "armhf"
|
||||
secrets: inherit
|
||||
|
||||
linux_armel_build:
|
||||
name: Linux armel Build
|
||||
uses: ./.github/workflows/deps-build-linux.yaml
|
||||
needs: [delete_current_releases]
|
||||
with:
|
||||
nightly: true
|
||||
tag: "pre-release"
|
||||
arch: "armel"
|
||||
secrets: inherit
|
||||
# linux_armel_build:
|
||||
# name: Linux armel Build
|
||||
# uses: ./.github/workflows/deps-build-linux.yaml
|
||||
# needs: [delete_current_releases]
|
||||
# with:
|
||||
# nightly: true
|
||||
# tag: "pre-release"
|
||||
# arch: "armel"
|
||||
# secrets: inherit
|
||||
|
||||
macos_amd64_build:
|
||||
name: macOS amd64 Build
|
||||
@@ -111,15 +161,18 @@ jobs:
|
||||
|
||||
update_tag:
|
||||
name: Update tag
|
||||
needs:
|
||||
[
|
||||
needs: [
|
||||
windows_amd64_build,
|
||||
windows_i686_build,
|
||||
windows_aarch64_build,
|
||||
windows_amd64_build_fixed_webview,
|
||||
windows_i686_build_fixed_webview,
|
||||
windows_aarch64_build_fixed_webview,
|
||||
linux_amd64_build,
|
||||
linux_i686_build,
|
||||
linux_aarch64_build,
|
||||
linux_armhf_build,
|
||||
linux_armel_build,
|
||||
# linux_armel_build,
|
||||
macos_amd64_build,
|
||||
macos_aarch64_build,
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user