Skip to content

Commit

Permalink
## [1.9.3] - 2024-03-12
Browse files Browse the repository at this point in the history
#### Added

- Information about automatic test scripts.
  • Loading branch information
sofbix committed Mar 12, 2024
1 parent 5ccddb4 commit 8dfed49
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

All notable changes to this project will be documented in this file.

## [1.9.3] - 2024-03-12

#### Added

- Information about automatic test scripts.

## [1.9.2] - 2024-03-07

#### Added
Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,25 @@ If you prefer not to use either of the aforementioned dependency managers, you c

## Build & test

### Bash script

For tests on popular iOS versions you just call script:

```bash
sh Scripts/release.sh
```

The same script can prepare release with detection version from [CHANGELOG](CHANGELOG.md) and you can use it for tag new version.
For the creating release notes I use [GL](https://cli.github.com/manual/gh), installed and setup and call next script:

```bash
brew install gh
gh auth login
sh Scripts/releasenotes.sh
```

### Manually

Just open `Example/NavigationExample/NavigationExample.xcodeproj` from Xcode and you can build, test this from IDE.

## Using
Expand Down
5 changes: 5 additions & 0 deletions Scripts/releasenotes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ echo "Start upload release to GitHub"
# GitHub CLI api
# https://cli.github.com/manual/gh_api
# I change '$CURRENT_VERSION' to "$CURRENT_VERSION"
# If you need auth GitHub on Runner:
# 1. install gh: `brew install gh`
# 2. Start interactive setup `gh auth login`
# 3. More: https://cli.github.com/manual/gh
# About create Release API: https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#create-a-release

gh api \
--method POST \
Expand Down

0 comments on commit 8dfed49

Please sign in to comment.