Skip to content

add(linting): add ci & makefile lint #4

add(linting): add ci & makefile lint

add(linting): add ci & makefile lint #4

Workflow file for this run

#Generate a new version of the client
name: Release
on:
push:
tags:
- 'v**'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-tags: 'true'
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: go mod download
- name: Downloading plugins
run: make plugin
- name: Release
run: |
git config user.name github-actions
git config user.email github-actions@github.com
make release