Skip to content

🎉 implement check color from referee #86

🎉 implement check color from referee

🎉 implement check color from referee #86

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v2
- name: Import GPG key 🔑
uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: Set up Go env 🏗
uses: actions/setup-go@v2
with:
go-version: "1.17"
- name: Run GoReleaser 🚀
uses: goreleaser/goreleaser-action@v2
with:
args: release --clean
version: v1.18.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}