Skip to content
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

Merging the changes for v0.8.1 to develop #40

Merged
merged 2 commits into from
Nov 18, 2023
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
12 changes: 4 additions & 8 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Release

on:
push:
branches:
- master
on: workflow_dispatch

jobs:
github_release:
Expand All @@ -15,7 +12,6 @@ jobs:
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: v0.8.0
commit: master
name: Gitrise v0.8.0
bodyFile: ./docs/release_notes/v0.8.0.md
tag: v0.8.1
name: Gitrise v0.8.1
bodyFile: ./docs/release_notes/v0.8.1.md
2 changes: 1 addition & 1 deletion docs/release_notes/v0.8.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Release Notes

* Added support for streaming the Bitrise logs by introducing the option `--stream` ( [issue #18](https://github.com/azohra/gitrise.sh/issues/18) )
* Added support for streaming the Bitrise logs by introducing the option `--stream` ( [issue #18](https://github.com/azohra/gitrise.sh/issues/18) )
* Improved performance by making the polling frequency configurable using the `-p | --poll` option
* Added support for triggering a build for a specific tag or commit using the `-t | --tag` and `-c | --commit` options, respectively ( [issue #23](https://github.com/azohra/gitrise.sh/issues/23) )
* Improved the usage instructions on the README
1 change: 1 addition & 0 deletions docs/release_notes/v0.8.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fixed the log truncation bug with large logs
2 changes: 1 addition & 1 deletion gitrise.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# shellcheck disable=SC2120
# disables "foo references arguments, but none are ever passed."

VERSION="0.8.0"
VERSION="0.8.1"
APP_NAME="Gitrise"
STATUS_POLLING_INTERVAL=30

Expand Down
Loading