mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
8c5d936308
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from v1.0.13 to v1.0.14. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Commits](https://github.com/codecov/codecov-action/compare/v1.0.13...7d5dfa54903bd909319c580a00535b483d1efcf3) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
88 lines
2.2 KiB
YAML
88 lines
2.2 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
goreleaser:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.3
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Set up Snapcraft
|
|
run: |
|
|
sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15
|
|
-
|
|
name: Cache Go modules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
-
|
|
name: Make Setup
|
|
run: |
|
|
make setup
|
|
-
|
|
name: Make CI
|
|
run: |
|
|
make ci
|
|
-
|
|
name: Upload coverage
|
|
uses: codecov/codecov-action@v1.0.14
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
file: ./coverage.txt
|
|
-
|
|
name: Check
|
|
run: |
|
|
./goreleaser check
|
|
-
|
|
name: Docker Login
|
|
if: success() && startsWith(github.ref, 'refs/tags/v')
|
|
env:
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
run: |
|
|
echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin
|
|
echo "${GITHUB_TOKEN}" | docker login ghcr.io --username $GITHUB_ACTOR --password-stdin
|
|
-
|
|
name: Snapcraft Login
|
|
if: success() && startsWith(github.ref, 'refs/tags/v')
|
|
env:
|
|
SNAPCRAFT_LOGIN: ${{ secrets.SNAPCRAFT_LOGIN }}
|
|
run: |
|
|
snapcraft login --with <(echo "$SNAPCRAFT_LOGIN")
|
|
-
|
|
name: GoReleaser
|
|
if: success()
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
run: |
|
|
if [[ $GITHUB_REF == refs/tags/v* ]]; then
|
|
./goreleaser
|
|
else
|
|
./goreleaser --snapshot
|
|
fi
|
|
-
|
|
name: Clear
|
|
if: always() && startsWith(github.ref, 'refs/tags/v')
|
|
run: |
|
|
rm -f ${HOME}/.docker/config.json
|