95 lines
2.0 KiB
YAML
95 lines
2.0 KiB
YAML
name: ci
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 10 * * *' # everyday at 10am
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- releases/v*
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/v*
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
version:
|
|
- latest
|
|
- v0.117.0
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.1
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.14
|
|
-
|
|
name: Check
|
|
uses: ./
|
|
with:
|
|
version: ${{ matrix.version }}
|
|
args: check --debug
|
|
-
|
|
name: GoReleaser
|
|
uses: ./
|
|
with:
|
|
version: ${{ matrix.version }}
|
|
args: release --skip-publish --rm-dist
|
|
|
|
signing:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.1
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.14
|
|
-
|
|
name: Import GPG key
|
|
id: import_gpg
|
|
uses: crazy-max/ghaction-import-gpg@v2
|
|
env:
|
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY_TEST }}
|
|
PASSPHRASE: ${{ secrets.PASSPHRASE_TEST }}
|
|
-
|
|
name: Check
|
|
uses: ./
|
|
with:
|
|
version: latest
|
|
args: -f .goreleaser-signing.yml check --debug
|
|
env:
|
|
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
|
|
-
|
|
name: GoReleaser
|
|
uses: ./
|
|
with:
|
|
version: latest
|
|
args: -f .goreleaser-signing.yml release --skip-publish --rm-dist
|
|
env:
|
|
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
|