diff --git a/.github/workflows/release-workflow.yml b/.github/workflows/release-workflow.yml index 3e6bda6..9b2397d 100644 --- a/.github/workflows/release-workflow.yml +++ b/.github/workflows/release-workflow.yml @@ -12,6 +12,6 @@ jobs: uses: ncipollo/release-action@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - tag: v0.9.1 - name: Gitrise v0.9.1 - bodyFile: ./docs/release_notes/v0.9.1.md + tag: v0.10.0 + name: Gitrise v0.10.0 + bodyFile: ./docs/release_notes/v0.10.0.md diff --git a/docs/release_notes/v0.10.0.md b/docs/release_notes/v0.10.0.md new file mode 100644 index 0000000..2d02779 --- /dev/null +++ b/docs/release_notes/v0.10.0.md @@ -0,0 +1,5 @@ +### Release Notes + +* Fixed the issue where Gitrise's exit status did not accurately reflect build failures when the `--download-artifacts` flag was used ([#53](https://github.com/Tumiya/gitrise/pull/53)) by @andersonvom + +* Upgraded the GitHub checkout action to v4 to enhance security and improve performance ([#55](https://github.com/Tumiya/gitrise/pull/55)) by @Azbagheri \ No newline at end of file diff --git a/gitrise.sh b/gitrise.sh index 9c6dd0b..0eeb724 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.9.1" +VERSION="0.10.0" APP_NAME="Gitrise" STATUS_POLLING_INTERVAL=30