mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-06 03:53:59 +02:00
Merge pull request #1129 from jesseduffield/dawidd6-patch-1
workflows: split CD into separate jobs
This commit is contained in:
commit
797722ec12
12
.github/workflows/cd.yml
vendored
12
.github/workflows/cd.yml
vendored
@ -6,8 +6,8 @@ on:
|
|||||||
- 'v*'
|
- 'v*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cd:
|
goreleaser:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -21,11 +21,17 @@ jobs:
|
|||||||
uses: goreleaser/goreleaser-action@v1
|
uses: goreleaser/goreleaser-action@v1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{secrets.GITHUB_API_TOKEN}}
|
GITHUB_TOKEN: ${{secrets.GITHUB_API_TOKEN}}
|
||||||
- name: Bump Homebrew
|
homebrew:
|
||||||
|
runs-on: macos-latest
|
||||||
|
steps:
|
||||||
|
- name: Bump Homebrew formula
|
||||||
uses: dawidd6/action-homebrew-bump-formula@v3
|
uses: dawidd6/action-homebrew-bump-formula@v3
|
||||||
with:
|
with:
|
||||||
token: ${{secrets.GITHUB_API_TOKEN}}
|
token: ${{secrets.GITHUB_API_TOKEN}}
|
||||||
formula: lazygit
|
formula: lazygit
|
||||||
|
ppa:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
- name: Checkout PPA repo
|
- name: Checkout PPA repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user