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

chore(ci): add test and release ci (#5) #1

chore(ci): add test and release ci (#5)

chore(ci): add test and release ci (#5) #1

Workflow file for this run

name: Rlease
on:
push:
tags:
- "v*.*.*"
jobs:
check-code:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.21.3
- name: Apply Patch
run: make apply-patch
- name: Build
run: make build
- name: Release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
with:
files: |
out/*
generate_release_notes: true
draft: false
prerelease: false
fail_on_unmatched_files: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}