This GitHub Action determines the Android Components release that is used in the current Fenix Beta.
It publishes the major A-C release number in the major-ac-version
output, which can then be used in other GitHub Actions.
Example usage:
- name: "Discover A-C Version"
id: ac-version-for-fenix-beta
uses: mozilla-mobile/[email protected]
- name "Print the version number"
run: "The current A-C Release used in Fenix Beta is $${{steps.ac-version-for-fenix-beta.outputs.major-ac-version}}"
This GitHub Action is used in in the github.com/mozilla-mobile/android-components/blob/master/.github/workflows/sync-strings.yml workflow.