Skip to content

Commit ecce259

Browse files
committed
Debug _build-any
1 parent a0afa89 commit ecce259

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/_build-any.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,15 @@ jobs:
8888
- name: Setup secrets
8989
if: env._BUILD_MODE == 'Device'
9090
run: |
91+
set -euo pipefail #TODO: remove this before merging to main
92+
9193
az_download() {
9294
local container_name=${1:-mobile}
9395
local az_filename=$2
9496
local local_filename=$3
97+
98+
echo "debug: $container_name $az_filename $local_filename"
99+
95100
az storage blob download --account-name bitwardenci --container-name $container_name --name $az_filename --file $local_filename --output none
96101
}
97102

.github/workflows/ci-bwpm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555

5656
build-manual:
5757
name: Build Manual
58-
needs: version
58+
#needs: version
5959
if: ${{ github.event_name == 'workflow_dispatch' }}
6060
uses: bitwarden/ios/.github/workflows/_build-any.yml@monorepo/new-build #TODO: change to main
6161
with:
6262
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 _
6565
distribute: ${{ inputs.distribute }}
6666
secrets: inherit
6767

0 commit comments

Comments
 (0)