summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@gmail.com>2020-02-01 20:22:02 +0900
committerFUJITA Tomonori <fujita.tomonori@gmail.com>2020-02-01 20:22:02 +0900
commit7581d9a3a5845acea6a4d8966a8015a69ba2ba39 (patch)
treeb1db27061f3a5e6be5494543e2e07a3292658059 /.github
parentf56e8b4a96d402ea720a8c914487a376aba777cb (diff)
github: fix release action to generate proper changelog
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml24
1 files changed, 13 insertions, 11 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index acfe2ce0..394a6660 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -11,16 +11,18 @@ on:
jobs:
build:
runs-on: ubuntu-16.04
-
+
steps:
- - name: checking out
- uses: actions/checkout@master
+ - name: checking out
+ uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
- - name: releasing
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
- wget https://github.com/goreleaser/goreleaser/releases/download/v0.108.0/goreleaser_amd64.deb
- sudo dpkg -i goreleaser_amd64.deb
- rm goreleaser_amd64.deb
- cd /home/runner/work/gobgp/gobgp && goreleaser release
+ - name: releasing
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ wget https://github.com/goreleaser/goreleaser/releases/download/v0.108.0/goreleaser_amd64.deb
+ sudo dpkg -i goreleaser_amd64.deb
+ rm goreleaser_amd64.deb
+ cd /home/runner/work/gobgp/gobgp && goreleaser release