mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
ci: add branch input to cross-compiler workflow
This commit is contained in:
parent
dd7094e5d3
commit
e27e85aae9
1 changed files with 6 additions and 2 deletions
8
.github/workflows/build-cross-image.yml
vendored
8
.github/workflows/build-cross-image.yml
vendored
|
|
@ -3,6 +3,10 @@ name: Build Cross-Compiler Image
|
|||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
branch:
|
||||
description: 'Branch containing Dockerfile'
|
||||
required: true
|
||||
default: 'v3-alpha'
|
||||
sdk_version:
|
||||
description: 'macOS SDK version'
|
||||
required: true
|
||||
|
|
@ -28,10 +32,10 @@ jobs:
|
|||
packages: write
|
||||
|
||||
steps:
|
||||
- name: Checkout v3-alpha
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: v3-alpha
|
||||
ref: ${{ inputs.branch }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue