Skip to content

fix-fastlane-naming-for-loading-issue #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# instabug-stores-upload plugin
# instabug_stores_upload plugin

[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-instabug-stores-upload)
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-instabug_stores_upload)

## Getting Started

This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-instabug-stores-upload`, add it to your project by running:
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-instabug_stores_upload`, add it to your project by running:

```bash
fastlane add_plugin instabug-stores-upload
fastlane add_plugin instabug_stores_upload
```

## About instabug-stores-upload
## About instabug_stores_upload

Wrapper plugin for uploading builds to App Store and Play Store with Instabug-specific metadata reporting. This plugin provides custom actions that wrap the standard Fastlane actions and automatically report build and upload events to Instabug systems for better observability and integration into internal pipelines.

Expand Down
2 changes: 1 addition & 1 deletion fastlane-plugin-instabug-stores-upload.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fastlane/plugin/instabug_stores_upload/version'

Gem::Specification.new do |spec|
spec.name = 'fastlane-plugin-instabug-stores-upload'
spec.name = 'fastlane-plugin-instabug_stores_upload'
spec.version = Fastlane::InstabugStoresUpload::VERSION
spec.author = 'Instabug'
spec.email = '[email protected]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Fastlane
module Actions
class InstabugStoresUploadAction < Action
def self.run(params)
UI.message("The instabug-stores-upload plugin is working!")
UI.message("The instabug_stores_upload plugin is working!")
end

def self.description
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def self.make_api_request(branch_name:, status:, api_key:, step:, extras: {}, er
request = Net::HTTP::Patch.new(uri.path)
request['Content-Type'] = 'application/json'
request['Authorization'] = "Bearer #{api_key}"
request['User-Agent'] = "fastlane-plugin-instabug-stores-upload"
request['User-Agent'] = "fastlane-plugin-instabug_stores_upload"
request.body = payload.to_json

response = http.request(request)
Expand Down
2 changes: 1 addition & 1 deletion spec/instabug_build_android_app_action_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
headers: {
'Content-Type' => 'application/json',
'Authorization' => 'Bearer test-api-key',
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
}
).once

Expand Down
2 changes: 1 addition & 1 deletion spec/instabug_build_ios_app_action_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
headers: {
'Content-Type' => 'application/json',
'Authorization' => 'Bearer test-api-key',
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
}
).once

Expand Down
2 changes: 1 addition & 1 deletion spec/instabug_stores_upload_action_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
describe Fastlane::Actions::InstabugStoresUploadAction do
describe '#run' do
it 'prints a message' do
expect(Fastlane::UI).to receive(:message).with("The instabug-stores-upload plugin is working!")
expect(Fastlane::UI).to receive(:message).with("The instabug_stores_upload plugin is working!")

Fastlane::Actions::InstabugStoresUploadAction.run(nil)
end
Expand Down
2 changes: 1 addition & 1 deletion spec/instabug_stores_upload_helper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
headers: {
'Content-Type' => 'application/json',
'Authorization' => 'Bearer test-key',
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
}
).once
end
Expand Down
4 changes: 2 additions & 2 deletions spec/instabug_upload_to_app_store_action_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
headers: {
'Content-Type' => 'application/json',
'Authorization' => 'Bearer test-api-key',
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
}
).once

Expand All @@ -55,7 +55,7 @@
headers: {
'Content-Type' => 'application/json',
'Authorization' => 'Bearer test-api-key',
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
}
).once
end
Expand Down
4 changes: 2 additions & 2 deletions spec/instabug_upload_to_play_store_action_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
headers: {
'Content-Type' => 'application/json',
'Authorization' => 'Bearer test-api-key',
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
}
).once

Expand All @@ -56,7 +56,7 @@
headers: {
'Content-Type' => 'application/json',
'Authorization' => 'Bearer test-api-key',
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
}
).once
end
Expand Down