mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
43 lines
931 B
YAML
43 lines
931 B
YAML
|
name: "Release Binary"
|
||
|
|
||
|
# Pairs with .goreleaser.yaml file for configuration.
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- '**'
|
||
|
|
||
|
# Test Locally with:
|
||
|
# goreleaser build --skip-validate --snapshot --clean
|
||
|
|
||
|
jobs:
|
||
|
goreleaser:
|
||
|
permissions: write-all
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2.3.4
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: '1.21'
|
||
|
|
||
|
- name: Clean up dist directory
|
||
|
run: rm -rf dist
|
||
|
|
||
|
- name: Build
|
||
|
uses: goreleaser/goreleaser-action@v5
|
||
|
with:
|
||
|
version: latest
|
||
|
args: build --skip-validate
|
||
|
|
||
|
- name: Release
|
||
|
uses: goreleaser/goreleaser-action@v5
|
||
|
if: startsWith(github.ref, 'refs/tags/')
|
||
|
with:
|
||
|
version: latest
|
||
|
args: release --skip-validate --clean
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|