From f3aacbd253bb303199ca5e36a77106fb24183635 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Thu, 24 Dec 2020 09:51:50 +0100 Subject: workflows: split CD into separate jobs --- .github/workflows/cd.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index c3977b948..c2698b7db 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -6,8 +6,8 @@ on: - 'v*' jobs: - cd: - runs-on: ubuntu-20.04 + goreleaser: + runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 @@ -21,11 +21,17 @@ jobs: uses: goreleaser/goreleaser-action@v1 env: 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 with: token: ${{secrets.GITHUB_API_TOKEN}} formula: lazygit + ppa: + runs-on: ubuntu-20.04 + steps: - name: Checkout PPA repo uses: actions/checkout@v2 with: -- cgit v1.2.3