Skip to content

update README.md

update README.md #5

Workflow file for this run

name: Publish Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Download Modules
run: go mod download -json
- name: Go lint
run: |
go install golang.org/x/lint/golint@latest
golint ./...
go vet ./...
- name: Build
run: |
sudo apt install -y --no-install-recommends upx
make all useUpx=1
ls -al
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
billing-release-*.tar.gz
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}