mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-14 11:23:09 +02:00
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: Continuous Delivery
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
cd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Unshallow repo
|
|
run: git fetch --prune --unshallow
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.14.x
|
|
- name: Run goreleaser
|
|
uses: goreleaser/goreleaser-action@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_API_TOKEN}}
|
|
- name: Bump Homebrew
|
|
uses: dawidd6/action-homebrew-bump-formula@v3
|
|
with:
|
|
token: ${{secrets.GITHUB_API_TOKEN}}
|
|
formula: lazygit
|
|
- name: Checkout PPA repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: dawidd6/lazygit-debian
|
|
token: ${{secrets.GITHUB_API_TOKEN}}
|
|
fetch-depth: 0
|
|
- name: Update PPA repo
|
|
run: |
|
|
version="$(echo "$GITHUB_REF" | sed 's@refs/tags/v@@')"
|
|
sudo apt install -y git-buildpackage
|
|
git fetch --tags https://github.com/$GITHUB_REPOSITORY
|
|
gbp import-ref -u "$version"
|
|
gbp dch -D xenial -N "$version"-1
|
|
git add debian/changelog
|
|
git commit -S -m "d/changelog: dch $version"
|
|
gbp tag
|
|
git push --tags origin master
|