
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
fastlane-plugin-download_github_release_asset
Advanced tools
This project is a fastlane plugin. To get started with fastlane-plugin-download_github_release_asset
, add it to your project by running:
fastlane add_plugin download_github_release_asset
This fastlane plugin downloads the GitHub release's asset using the GitHub API. The possible usage of the plugin can be found in example Fastfile.
Usually the asset on GitHub is a .zip
file, so here can be really useful another plugin to unzip archive.
Check out the example Fastfile
to see how to use this plugin. Try it by cloning the repo, running fastlane install_plugins
and bundle exec fastlane example
.
lane :example do |options|
release_version = options[:release_version]
github_release = get_github_release(
url: ENV['PRIVATE_CONICHI_IOS_SDK_GITHUB_REPO'],
version: release_version,
api_token: ENV['CONICHI_CI_GITHUB_TOKEN']
)
assets = github_release["assets"]
selected_assets = assets.select do |asset|
asset["name"] == "my_asset.zip"
end
my_asset_json = selected_assets[0]
my_asset_url = my_asset_json["url"]
download_github_release_asset(
asset_url: my_asset_url,
destination_path: "./here/my_asset.zip",
api_token: "token"
)
end
To run both the tests, and code style validation, run
rake
To automatically fix many of the styling issues, use
rubocop -a
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting doc in the main fastlane
repo.
fastlane
PluginsFor more information about how the fastlane
plugin system works, check out the Plugins documentation.
fastlane
fastlane
is the easiest way to automate building and releasing your iOS and Android apps. To learn more, check out fastlane.tools.
FAQs
Unknown package
We found that fastlane-plugin-download_github_release_asset demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.