Skip to content

Update USAGE and add command examples #6

Update USAGE and add command examples

Update USAGE and add command examples #6

Workflow file for this run

name: release
on:
push:
tags:
- v*
jobs:

Check failure on line 8 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 8
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.23.0'
- name: dependencies
run: |
sudo apt-get install -y \
gcc-aarch64-linux-gnu \
g++-aarch64-linux-gnu
- run: make linux
- run: make linux-arm
- run: make darwin
- run: make darwin-arm
- uses: goreleaser/goreleaser-action@v6
with:
args: release --clean
version: '~> v2'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_BRANCH: ${{ vars.BUILD_BRANCH }}
BUILD_USER: ${{ vars.BUILD_USER }}