mirror of
https://github.com/zen-browser/desktop.git
synced 2026-01-25 14:16:10 +00:00
chore: Update build workflows to support warp builds
This commit is contained in:
6
.github/workflows/alpha.yml
vendored
6
.github/workflows/alpha.yml
vendored
@@ -13,6 +13,11 @@ on:
|
||||
required: false
|
||||
default: true
|
||||
type: 'boolean'
|
||||
use-warp-build:
|
||||
description: 'Use the warp build'
|
||||
required: false
|
||||
default: false
|
||||
type: 'boolean'
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -209,6 +214,7 @@ jobs:
|
||||
with:
|
||||
build-version: ${{ needs.build-data.outputs.version }}
|
||||
generate-gpo: false
|
||||
use-warp-build: ${{ github.event.inputs.use-warp-build }}
|
||||
|
||||
linux:
|
||||
name: Linux build
|
||||
|
||||
6
.github/workflows/linux-alpha-build.yml
vendored
6
.github/workflows/linux-alpha-build.yml
vendored
@@ -6,12 +6,16 @@ on:
|
||||
description: 'The version to build'
|
||||
required: true
|
||||
type: string
|
||||
use-warp-build:
|
||||
description: 'Whether to use the warp build'
|
||||
required: true
|
||||
type: boolean
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
permissions:
|
||||
contents: write
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ github.event.inputs.use-warp-build == 'true' && 'warp-ubuntu-latest-x64-16x' || 'ubuntu-latest' }}
|
||||
|
||||
steps:
|
||||
- name: Install Node.js
|
||||
|
||||
6
.github/workflows/windows-alpha-build.yml
vendored
6
.github/workflows/windows-alpha-build.yml
vendored
@@ -13,10 +13,14 @@ on:
|
||||
profile-data-path-archive:
|
||||
description: 'The path to the zip archive containing the profile data'
|
||||
type: string
|
||||
use-warp-build:
|
||||
description: 'Whether to use the warp build'
|
||||
required: true
|
||||
type: boolean
|
||||
|
||||
jobs:
|
||||
windows-build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ github.event.inputs.use-warp-build == 'true' && 'warp-windows-latest-x64-16x' || 'ubuntu-latest' }}
|
||||
|
||||
steps:
|
||||
- name: Install Node.js and pnpm
|
||||
|
||||
Reference in New Issue
Block a user