File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -55,24 +55,27 @@ jobs:
55
55
56
56
build-manual :
57
57
name : Build Manual
58
+ needs : version
58
59
if : ${{ github.event_name == 'workflow_dispatch' }}
59
60
uses : bitwarden/ios/.github/workflows/_build-any.yml@monorepo/new-build # TODO: change to main
60
61
with :
61
62
environment : ${{ (inputs.build-variant == 'Production') && 'bwpm_prod' || 'bwpm_beta' }}
62
- version-name : ${{ inputs .version-name }}
63
- version-number : ${{ inputs .version-number }}
63
+ version-name : ${{ needs .version.outputs.version_name }}
64
+ version-number : ${{ needs .version.outputs.version_number }} # TODO: refactor all inputs to be consistent with - or _
64
65
distribute : ${{ inputs.distribute }}
66
+ secrets : inherit
65
67
66
68
build-public :
67
69
name : Build CI
70
+ needs : version
68
71
if : ${{ github.event_name == 'push' }}
69
72
uses : bitwarden/ios/.github/workflows/_build-any.yml@monorepo/new-build # TODO: change to main
70
73
strategy :
71
74
matrix :
72
75
env : [bwpm_prod, bwpm_beta]
73
76
with :
74
77
environment : ${{ matrix.env }}
75
- version-name : " 2025.3.0 "
76
- version-number : " ${{ github.run_number }}"
78
+ version-name : ${{ needs.version.outputs.version_name }}
79
+ version-number : ${{ needs.version.outputs.version_number }}
77
80
distribute : ${{ inputs.distribute }}
78
81
secrets : inherit
You can’t perform that action at this time.
0 commit comments