Skip to content

Commit 83cec74

Browse files
authored
Update step.yml (#109)
* Update step.yml * Update README * Fix go lint issue
1 parent 40ce89b commit 83cec74

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can set the **Execute cocoapods in verbose mode?** input to true to get deta
4242

4343
## 🧩 Get started
4444

45-
Add this step directly to your workflow in the [Bitrise Workflow Editor](https://devcenter.bitrise.io/steps-and-workflows/steps-and-workflows-index/).
45+
Add this step directly to your workflow in the [Bitrise Workflow Editor](https://docs.bitrise.io/en/bitrise-ci/workflows-and-pipelines/steps/adding-steps-to-a-workflow.html).
4646

4747
You can also run this step directly with [Bitrise CLI](https://github.com/bitrise-io/bitrise).
4848

@@ -69,9 +69,8 @@ There are no outputs defined in this step
6969

7070
We welcome [pull requests](https://github.com/bitrise-io/steps-cocoapods-install/pulls) and [issues](https://github.com/bitrise-io/steps-cocoapods-install/issues) against this repository.
7171

72-
For pull requests, work on your changes in a forked repository and use the Bitrise CLI to [run step tests locally](https://devcenter.bitrise.io/bitrise-cli/run-your-first-build/).
72+
For pull requests, work on your changes in a forked repository and use the Bitrise CLI to [run step tests locally](https://docs.bitrise.io/en/bitrise-ci/bitrise-cli/running-your-first-local-build-with-the-cli.html).
7373

7474
Learn more about developing steps:
7575

76-
- [Create your own step](https://devcenter.bitrise.io/contributors/create-your-own-step/)
77-
- [Testing your Step](https://devcenter.bitrise.io/contributors/testing-and-versioning-your-steps/)
76+
- [Create your own step](https://docs.bitrise.io/en/bitrise-ci/workflows-and-pipelines/developing-your-own-bitrise-step/developing-a-new-step.html)

podfile_test.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ func TestIsPodfileUsingSpecsRepo(t *testing.T) {
3838
wantErr: false,
3939
},
4040
{
41-
name: "Other specs repo defined",
41+
name: "Other specs repo defined",
4242
podfileContent: otherRepoPodfile,
43-
expected: false,
44-
wantErr: false,
43+
expected: false,
44+
wantErr: false,
4545
},
4646
{
47-
name: "Specs repo with lowercase URL",
47+
name: "Specs repo with lowercase URL",
4848
podfileContent: repoPodfileLowercase,
49-
expected: true,
50-
wantErr: false,
49+
expected: true,
50+
wantErr: false,
5151
},
5252
}
5353

@@ -56,7 +56,7 @@ func TestIsPodfileUsingSpecsRepo(t *testing.T) {
5656
path := filepath.Join(t.TempDir(), "Podfile")
5757
err := os.WriteFile(path, []byte(tt.podfileContent), 0777)
5858
if err != nil {
59-
t.Fatalf(err.Error())
59+
t.Fatal(err.Error())
6060
}
6161

6262
actual, err := isPodfileUsingSpecsRepo(path)

step.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ source_code_url: https://github.com/bitrise-io/steps-cocoapods-install
3737
support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues
3838

3939
project_type_tags:
40-
- ios
41-
- macos
4240
- cordova
41+
- flutter
4342
- ionic
43+
- ios
44+
- kotlin-multiplatform
45+
- macos
4446
- react-native
45-
- flutter
4647
type_tags:
4748
- dependency
4849

0 commit comments

Comments
 (0)