We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ca273 commit 486840fCopy full SHA for 486840f
.github/workflows/cd.yml
@@ -10,6 +10,9 @@ jobs:
10
runs-on: macos-latest
11
steps:
12
- uses: actions/checkout@v2
13
+ - name: Get version
14
+ id: get_version
15
+ run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
16
- name: Build
17
run: cargo build
18
- name: Run tests
@@ -50,7 +53,7 @@ jobs:
50
53
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.BREW_TOKEN }}
51
54
run: |
52
55
brew tap extrawurst/tap
- brew bump-formula-pr -f --version=${{ github.ref }} --no-browse --no-audit \
56
+ brew bump-formula-pr -f --version=${{ steps.get_version.outputs.version }} --no-browse --no-audit \
57
--sha256=${{ steps.shasum.outputs.sha }} \
58
--url="https://github.com/extrawurst/gitui/releases/download/${{ github.ref }}/gitui-mac.tar.gz" \
59
extrawurst/tap/gitui
0 commit comments