aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
blob: 358abc0127def02684cb77d424fee2ad5ce53b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: release

on:
  push:
    tags:
      - 'v*'

jobs:
  goreleaser:
    name: Release
    runs-on: ubuntu-latest
    steps:

    - name: Set up Go 1.14
      uses: actions/setup-go@v1
      with:
        go-version: 1.14
      id: go

    - name: Checkout
      uses: actions/checkout@v2

    - name: Get Changelog Entry
      id: changelog_reader
      uses: mindsers/changelog-reader-action@v1.1.0
      with:
        version: ${{ github.ref }}
        path: ./CHANGELOG.md

    - name: Safe Changelog Text
      run: |
          echo '${{ steps.changelog_reader.outputs.log_entry }}' >> $HOME/changelog_entry
          echo "::set-env name=clfile::${HOME}/changelog_entry"

    - name: Docker Login
      uses: azure/docker-login@v1
      with:
         login-server: 'docker.pkg.github.com'
         username: ${{ github.repository_owner }}
         password: ${{ secrets.GITHUB_TOKEN }}

    - name: Docker Login
      uses: azure/docker-login@v1
      with:
         login-server: 'index.docker.io'
         username: necorodm
         password: ${{ secrets.DOCKER_TOKEN }}

    - name: Run GoReleaser
      uses: goreleaser/goreleaser-action@v1
      with:
          version: latest
          args: --release-notes ${{ env.clfile }}
      env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}