Skip to content

update readme

update readme #4

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-node@v4
with:
node-version: "18.x"
- run: npm ci
working-directory: ui/
- run: npm run build
working-directory: ui/
- uses: actions/setup-go@v5
with:
go-version: "1.21.1"
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.55.2
- name: Build
run: make build-all
- name: Install UPX
uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- run: make compress-linux
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bin/securebin*
tag: ${{ github.ref }}
overwrite: true
file_glob: true