This commit is contained in:
Bryan Gerlach
2024-10-07 15:50:14 -05:00
parent eae736ac5a
commit 1f8249ac72
2 changed files with 10 additions and 0 deletions

View File

@@ -4,6 +4,12 @@ name: Build flutter-rust-bridge
on:
workflow_call:
inputs:
version:
description: 'Rustdesk Version'
required: true
default: '1.3.1'
type: string
env:
FLUTTER_VERSION: "3.19.6"
@@ -27,6 +33,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: rustdesk/rustdesk
ref: refs/tags/${{ inputs.version }}
- name: Install prerequisites
run: |

View File

@@ -89,6 +89,9 @@ env:
jobs:
generate-bridge-linux:
uses: ./.github/workflows/bridge.yml
with:
version: ${{ fromJson(inputs.extras).version }}
build-rustdesk-linux:
needs: [generate-bridge-linux]