Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Merge pull request #8 from tyler-technologies/jcn/depro #15

Merge pull request #8 from tyler-technologies/jcn/depro

Merge pull request #8 from tyler-technologies/jcn/depro #15

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v2
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
- name: Build
uses: goreleaser/[email protected]
with:
version: latest
args: release --snapshot --skip-validate --skip-publish
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}