Skip to content

Commit 920d299

Browse files
authored
Update the passed parameters in the xcodebuild command (#6)
* Update the passed parameters in the `xcodebuild` command * Update `CHANGELOG.md`
1 parent 72cb8bf commit 920d299

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,28 @@
22
All notable changes to this project will be documented in this file.
33

44
#### 1.x Releases
5-
- `1.1.x` Releases - [1.1.0](#110)
5+
- `1.1.x` Releases - [1.1.0](#110) | [1.1.1](#111)
66
- `1.0.x` Releases - [1.0.0](#100)
77

8+
## [1.1.1](https://github.com/space-code/package-template/releases/tag/1.1.1)
9+
Released on 2023-12-18
10+
11+
## Fixed
12+
- Implementing the handling of failed tests on GitHub Actions
13+
- Added in Pull Request [#6](https://github.com/space-code/package-template/pull/6).
14+
815
## [1.1.0](https://github.com/space-code/package-template/releases/tag/1.1.0)
916
Released on 2023-12-01
1017

1118
## Added
1219
- Update GitHub Actions configuration
13-
- Added in Pull Request [#4](https://github.com/space-code/package-template/pull/4)
20+
- Added in Pull Request [#4](https://github.com/space-code/package-template/pull/4).
1421
- Integrate `danger`
1522
- Added in Pull Request [#2](https://github.com/space-code/package-template/pull/2).
1623
- Add issues and pull request templates
1724
- Added in Pull Request [#1](https://github.com/space-code/package-template/pull/1).
1825

19-
## Fixes
26+
## Fixed
2027
- Fix deprecated SwiftLint rules
2128
- Added in Pull Request [#3](https://github.com/space-code/package-template/pull/3).
2229

{{ cookiecutter.name | lower }}/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
{% raw %}
6565
- uses: actions/checkout@v3
6666
- name: ${{ matrix.name }}
67-
run: xcodebuild test -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean -enableCodeCoverage YES -resultBundlePath "./${{ matrix.sdk }}.xcresult"
67+
run: xcodebuild test -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean -enableCodeCoverage YES -resultBundlePath "./${{ matrix.sdk }}.xcresult" || exit 1
6868
- name: Upload coverage reports to Codecov
6969
uses: codecov/codecov-action@v3.1.0
7070
with:

0 commit comments

Comments
 (0)