File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -88,10 +88,15 @@ jobs:
88
88
- name : Setup secrets
89
89
if : env._BUILD_MODE == 'Device'
90
90
run : |
91
+ set -euo pipefail #TODO: remove this before merging to main
92
+
91
93
az_download() {
92
94
local container_name=${1:-mobile}
93
95
local az_filename=$2
94
96
local local_filename=$3
97
+
98
+ echo "debug: $container_name $az_filename $local_filename"
99
+
95
100
az storage blob download --account-name bitwardenci --container-name $container_name --name $az_filename --file $local_filename --output none
96
101
}
97
102
Original file line number Diff line number Diff line change @@ -55,13 +55,13 @@ jobs:
55
55
56
56
build-manual :
57
57
name : Build Manual
58
- needs : version
58
+ # needs: version
59
59
if : ${{ github.event_name == 'workflow_dispatch' }}
60
60
uses : bitwarden/ios/.github/workflows/_build-any.yml@monorepo/new-build # TODO: change to main
61
61
with :
62
62
environment : ${{ (inputs.build-variant == 'Production') && 'bwpm_prod' || 'bwpm_beta' }}
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 _
63
+ version-name : ${{ needs.version.outputs.version_name || '2025.3.0' }}
64
+ version-number : ${{ needs.version.outputs.version_number || github.run_number }} # TODO: refactor all inputs to be consistent with - or _
65
65
distribute : ${{ inputs.distribute }}
66
66
secrets : inherit
67
67
You can’t perform that action at this time.
0 commit comments