This action provides the following functionality for GitHub Actions users:
- Download bundletool and use it in subsequent Steps as
bundletoolcommand - Runs on Mac, Linux and Windows powered by SelfHostedRunner or GithubHostedRunner
See action.yml
Basic:
steps:
- uses: actions/checkout@v6
# bundletool requires java
- name: Setup JDK 17
uses: actions/setup-java@v5
with:
java-version: 17
distribution: temurin
- name: Setup bundletool
uses: amyu/setup-bundletool@v1.1
- run: bundletool helpWith specific version:
steps:
- uses: actions/checkout@v6
- name: Setup JDK 17
uses: actions/setup-java@v5
with:
java-version: 17
distribution: temurin
- name: Setup bundletool
uses: amyu/setup-bundletool@v1.1
with:
version: 1.18.3
- run: bundletool helpThe scripts and documentation in this project are released under the MIT License
Contributions are welcome!