mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
use correct version
This commit is contained in:
parent
2047b591b7
commit
c1b752c91c
1 changed files with 10 additions and 12 deletions
22
.github/workflows/cd.yml
vendored
22
.github/workflows/cd.yml
vendored
|
|
@ -2,22 +2,20 @@ name: CD
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ '*' ]
|
tags:
|
||||||
# push:
|
- '*'
|
||||||
# tags:
|
|
||||||
# - '*'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release-osx:
|
release-osx:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
# - name: Build
|
- name: Build
|
||||||
# run: cargo build
|
run: cargo build
|
||||||
# - name: Run tests
|
- name: Run tests
|
||||||
# run: make test
|
run: make test
|
||||||
# - name: Run clippy
|
- name: Run clippy
|
||||||
# run: make clippy
|
run: make clippy
|
||||||
- name: Build Release
|
- name: Build Release
|
||||||
run: make build-release
|
run: make build-release
|
||||||
|
|
||||||
|
|
@ -52,7 +50,7 @@ jobs:
|
||||||
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.BREW_TOKEN }}
|
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.BREW_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
brew tap extrawurst/tap
|
brew tap extrawurst/tap
|
||||||
brew bump-formula-pr -f --version=v0.2.0 --no-browse --no-audit \
|
brew bump-formula-pr -f --version=${{ github.ref }} --no-browse --no-audit \
|
||||||
--sha256=${{ steps.shasum.outputs.sha }} \
|
--sha256=${{ steps.shasum.outputs.sha }} \
|
||||||
--url="https://github.com/extrawurst/gitui/releases/download/refs%2Fheads%2Fcd-pipeline/gitui-mac.tar.gz" \
|
--url="https://github.com/extrawurst/gitui/releases/download/${{ github.ref }}/gitui-mac.tar.gz" \
|
||||||
extrawurst/tap/gitui
|
extrawurst/tap/gitui
|
||||||
Loading…
Reference in a new issue