1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-13 22:17:05 +02:00
This commit is contained in:
Dawid Dziurla 2020-03-20 14:27:39 +01:00 committed by Jesse Duffield
parent 1c1445c896
commit 39bd1a4628

View File

@ -9,15 +9,15 @@ jobs:
cd: cd:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Set up Go - name: Setup Go
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
go-version: 1.14.x go-version: 1.14.x
- name: Run GoReleaser - name: Run goreleaser
uses: goreleaser/goreleaser-action@v1 uses: goreleaser/goreleaser-action@v1
with: with:
args: release --rm-dist args: release --rm-dist
@ -26,7 +26,7 @@ jobs:
- name: Get tag - name: Get tag
id: tag id: tag
run: echo "::set-output name=tag::${GITHUB_REF##*/}" run: echo "::set-output name=tag::${GITHUB_REF##*/}"
- name: Bump Homebrew formula - name: Bump Homebrew
uses: dawidd6/action-homebrew-bump-formula@v1 uses: dawidd6/action-homebrew-bump-formula@v1
with: with:
token: ${{secrets.GITHUB_API_TOKEN}} token: ${{secrets.GITHUB_API_TOKEN}}