Skip to content

Commit 5d7e6c8

Browse files
committed
ENH: Add argument to specify PlusApp repository/tag to build-plus-package action
1 parent 4434f7c commit 5d7e6c8

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/build-plus-package.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ on:
3434
description: 'Git tag or commit SHA for PlusLib'
3535
required: false
3636
default: 'master'
37+
plusapp-repository:
38+
description: 'Git repository URL for PlusApp'
39+
required: false
40+
default: 'https://github.com/PlusToolkit/PlusApp.git'
41+
plusapp-tag:
42+
description: 'Git tag or commit SHA for PlusApp'
43+
required: false
44+
default: 'master'
3745
use-pltools:
3846
description: 'Clone PLTools (requires PLTOOLS_ACCESS_TOKEN secret)'
3947
required: false
@@ -125,6 +133,8 @@ jobs:
125133
os: ${{ matrix.os }}
126134
pluslib-repository: ${{ inputs.pluslib-repository }}
127135
pluslib-tag: ${{ inputs.pluslib-tag }}
136+
plusapp-repository: ${{ inputs.plusapp-repository }}
137+
plusapp-tag: ${{ inputs.plusapp-tag }}
128138
use-pltools: ${{ inputs.use-pltools }}
129139
vtk-cache-key: ${{ inputs.platform == 'x64' && needs.update_vtk_x64.outputs.cache-key || needs.update_vtk_Win32.outputs.cache-key }}
130140
itk-cache-key: ${{ inputs.platform == 'x64' && needs.update_itk_x64.outputs.cache-key || needs.update_itk_Win32.outputs.cache-key }}

.github/workflows/build-plus.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ on:
5050
plusapp-repository:
5151
required: false
5252
type: string
53-
default: https://github.com/Sunderlandkyl/PlusApp.git
53+
default: https://github.com/PlusToolkit/PlusApp.git
5454
plusapp-tag:
5555
required: false
5656
type: string
57-
default: install_branch_temp
58-
57+
default: master
58+
5959
use-pltools:
6060
required: false
6161
type: boolean

0 commit comments

Comments
 (0)