diff --git a/.github/workflows/release-workflow.yml b/.github/workflows/release-workflow.yml index 0948a4d..897392a 100644 --- a/.github/workflows/release-workflow.yml +++ b/.github/workflows/release-workflow.yml @@ -1,9 +1,6 @@ name: Release -on: - push: - branches: - - master +on: workflow_dispatch jobs: github_release: @@ -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 \ No newline at end of file + tag: v0.8.1 + name: Gitrise v0.8.1 + bodyFile: ./docs/release_notes/v0.8.1.md \ No newline at end of file diff --git a/docs/release_notes/v0.8.0.md b/docs/release_notes/v0.8.0.md index eae3a63..dba79d7 100644 --- a/docs/release_notes/v0.8.0.md +++ b/docs/release_notes/v0.8.0.md @@ -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 \ No newline at end of file diff --git a/docs/release_notes/v0.8.1.md b/docs/release_notes/v0.8.1.md new file mode 100644 index 0000000..30f0e13 --- /dev/null +++ b/docs/release_notes/v0.8.1.md @@ -0,0 +1 @@ +* Fixed the log truncation bug with large logs \ No newline at end of file diff --git a/gitrise.sh b/gitrise.sh index dc137b6..34565ca 100755 --- a/gitrise.sh +++ b/gitrise.sh @@ -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