mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
try fixing CD
This commit is contained in:
parent
1ac8ee6e4f
commit
fd6776cee7
4 changed files with 13 additions and 14 deletions
21
.github/workflows/cd.yml
vendored
21
.github/workflows/cd.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
|||
if: matrix.os == 'windows-latest'
|
||||
run: |
|
||||
choco install wsl-ubuntu-1804
|
||||
|
||||
|
||||
- name: Get version
|
||||
id: get_version
|
||||
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
|
||||
|
|
@ -70,23 +70,22 @@ jobs:
|
|||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
body: ${{ steps.release_notes.outputs.release_notes }}
|
||||
prerelease: false
|
||||
prerelease: true
|
||||
files: |
|
||||
./release/*.tar.gz
|
||||
./release/*.zip
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Bump extrawurst/homebrew-tap formula
|
||||
if: matrix.os == 'macos-latest'
|
||||
- name: Bump personal tap formula
|
||||
uses: mislav/bump-homebrew-formula-action@v1
|
||||
if: "matrix.os == 'macos-latest' && !contains(github.ref, '-')" # skip prereleases
|
||||
env:
|
||||
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.BREW_TOKEN }}
|
||||
run: |
|
||||
brew tap extrawurst/tap
|
||||
brew bump-formula-pr -f --version=${{ steps.get_version.outputs.version }} --no-browse --no-audit \
|
||||
--sha256=${{ steps.shasum.outputs.sha }} \
|
||||
--url="https://github.com/extrawurst/gitui/releases/download/${{ steps.get_version.outputs.version }}/gitui-mac.tar.gz" \
|
||||
extrawurst/tap/gitui
|
||||
COMMITTER_TOKEN: ${{ secrets.BREW_TOKEN }}
|
||||
with:
|
||||
formula-name: gitui
|
||||
homebrew-tap: extrawurst/tap
|
||||
download-url: "https://github.com/extrawurst/gitui/releases/download/${{ steps.get_version.outputs.version }}/gitui-mac.tar.gz"
|
||||
|
||||
- name: Bump homebrew-core formula
|
||||
uses: mislav/bump-homebrew-formula-action@v1
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.9.0] - 2020-07-30
|
||||
## [0.9.1] - 2020-07-30
|
||||
|
||||
### Added
|
||||
- move to (un)staged when the current selection is empty [[@jonstodle](https://github.com/jonstodle)] ([#215](https://github.com/extrawurst/gitui/issues/215))
|
||||
|
|
|
|||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -401,7 +401,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gitui"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"asyncgit",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "gitui"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||
description = "blazing fast terminal-ui for git"
|
||||
edition = "2018"
|
||||
|
|
|
|||
Loading…
Reference in a new issue