Skip to content

docs: add check status bade #10

docs: add check status bade

docs: add check status bade #10

Workflow file for this run

name: release
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- id: release
uses: googleapis/release-please-action@v4
with:
config-file: .github/release-please-config.json
manifest-file: .github/release-please-manifest.json
- if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v3
- if: ${{ steps.release.outputs.release_created }}
uses: actions/setup-go@v4
with:
go-version: '1.23.3'
- if: ${{ steps.release.outputs.release_created }}
env:
RELEASE_TAG: ${{ steps.release.outputs.tag_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOBIN: ${{ github.workspace }}/bin
run: |
bash .github/build.sh -v "$RELEASE_TAG" -o dist <<EOT
linux/amd64
darwin/amd64
windows/amd64
EOT
gh release upload "$RELEASE_TAG" ./dist/*