Skip to content

Commit fd6776c

Browse files
author
Stephan Dilly
committed
try fixing CD
1 parent 1ac8ee6 commit fd6776c

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

.github/workflows/cd.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: matrix.os == 'windows-latest'
2020
run: |
2121
choco install wsl-ubuntu-1804
22-
22+
2323
- name: Get version
2424
id: get_version
2525
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
@@ -70,23 +70,22 @@ jobs:
7070
uses: softprops/action-gh-release@v1
7171
with:
7272
body: ${{ steps.release_notes.outputs.release_notes }}
73-
prerelease: false
73+
prerelease: true
7474
files: |
7575
./release/*.tar.gz
7676
./release/*.zip
7777
env:
7878
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7979

80-
- name: Bump extrawurst/homebrew-tap formula
81-
if: matrix.os == 'macos-latest'
80+
- name: Bump personal tap formula
81+
uses: mislav/bump-homebrew-formula-action@v1
82+
if: "matrix.os == 'macos-latest' && !contains(github.ref, '-')" # skip prereleases
8283
env:
83-
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.BREW_TOKEN }}
84-
run: |
85-
brew tap extrawurst/tap
86-
brew bump-formula-pr -f --version=${{ steps.get_version.outputs.version }} --no-browse --no-audit \
87-
--sha256=${{ steps.shasum.outputs.sha }} \
88-
--url="https://github.com/extrawurst/gitui/releases/download/${{ steps.get_version.outputs.version }}/gitui-mac.tar.gz" \
89-
extrawurst/tap/gitui
84+
COMMITTER_TOKEN: ${{ secrets.BREW_TOKEN }}
85+
with:
86+
formula-name: gitui
87+
homebrew-tap: extrawurst/tap
88+
download-url: "https://github.com/extrawurst/gitui/releases/download/${{ steps.get_version.outputs.version }}/gitui-mac.tar.gz"
9089

9190
- name: Bump homebrew-core formula
9291
uses: mislav/bump-homebrew-formula-action@v1

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
## [0.9.0] - 2020-07-30
9+
## [0.9.1] - 2020-07-30
1010

1111
### Added
1212
- move to (un)staged when the current selection is empty [[@jonstodle](https://github.com/jonstodle)] ([#215](https://github.com/extrawurst/gitui/issues/215))

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gitui"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Stephan Dilly <[email protected]>"]
55
description = "blazing fast terminal-ui for git"
66
edition = "2018"

0 commit comments

Comments
 (0)