CI - main #149
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - main | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
inputs: | ||
build-version: | ||
description: "Version Name Override - e.g. '2024.8.1'" | ||
type: string | ||
build-number: | ||
description: "Version Number Override - e.g. '1021'" | ||
type: number | ||
patch_version: | ||
description: "Patch Version Override - e.g. '999'" | ||
type: string | ||
ditribute: | ||
description: "Distribute to TestFlight" | ||
type: boolean | ||
default: false | ||
env: | ||
XCODE_VERSION: '15.4' | ||
DISTRIBUTE_TO_TESTFLIGHT: ${{ github.event_name == 'push' || inputs.distribute }} | ||
jobs: | ||
resolve-values: | ||
name: "Resolve values" | ||
runs-on: macos-14 | ||
outputs: | ||
version_name: ${{ steps.version_info.outputs.version_name }} | ||
version_number: ${{ steps.version_info.outputs.version_number }} | ||
steps: | ||
- name: Log inputs to job summary | ||
run: | | ||
echo "<details><summary>CI-main Workflow Inputs</summary>" >> $GITHUB_STEP_SUMMARY | ||
echo "" >> $GITHUB_STEP_SUMMARY | ||
echo '```json' >> $GITHUB_STEP_SUMMARY | ||
echo '${{ toJson(inputs) }}' >> $GITHUB_STEP_SUMMARY | ||
echo '```' >> $GITHUB_STEP_SUMMARY | ||
echo "</details>" >> $GITHUB_STEP_SUMMARY | ||
- name: Calculate version | ||
if: ${{ inputs.build-number == '' || inputs.build-version == '' }} | ||
uses: bitwarden/ios/.github/actions/dispatch-and-download@main | ||
id: dispatch-version | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
repo: ios | ||
owner: bitwarden | ||
workflow: _version.yml | ||
workflow_inputs: '{"base_version_number": "1000", "version_name": "${{ inputs.build-version }}", "version_number": "${{ inputs.build-number }}", "patch_version": "${{ inputs.patch_version }}"}' | ||
- name: Read version info | ||
id: version_info | ||
run: | | ||
# test if dispatch-version was skipped. In that case, creates the same .json file expected by the Upload artifact step | ||
if [ ! -f version-info/version_info.json ]; then | ||
echo "::warning::version-version.json not found, was the previous step skipped? Creating a new file" | ||
json='{ | ||
"version_number": "${{ inputs.build-number }}", | ||
"version_name": "${{ inputs.build-version }}" | ||
}' | ||
# file will be used by the upload step | ||
mkdir version-info | ||
echo "$json" > version-info/version_info.json | ||
else | ||
echo "::notice::version-version.json found!" | ||
fi | ||
content=$(cat version-info/version_info.json) | ||
echo "version_name=$(echo $content | jq -r .version_name)" >> $GITHUB_OUTPUT | ||
echo "version_number=$(echo $content | jq -r .version_number)" >> $GITHUB_OUTPUT | ||
- name: Upload version info artifact | ||
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | ||
with: | ||
name: version-info | ||
path: version-info/version_info.json | ||
build: | ||
name: Build | ||
needs: resolve-values | ||
uses: bitwarden/ios/.github/workflows/build.yml@ci-version-name | ||
strategy: | ||
matrix: | ||
variant: [Beta, Production] | ||
with: | ||
build-variant: ${{ matrix.variant }} | ||
build-version: ${{ needs.resolve-values.outputs.version_name }} | ||
build-number: ${{ needs.resolve-values.outputs.version_number }} | ||
xcode-version: $XCODE_VERSION | ||
distribute: $DISTRIBUTE_TO_TESTFLIGHT | ||
secrets: inherit |