如何使用goreleaser在github中构建子文件夹

如何使用goreleaser在github中构建子文件夹,go,building-github-actions,goreleaser,Go,Building Github Actions,Goreleaser,我使用goreleaser构建github操作。 因为my main.go位于/cmd/tes_cli,所以它总是在github操作中显示错误 repo does not contain a main function. 我检查了原始文档,似乎“构建”可以工作。我的配置无法添加版本 name: Release Go project on: push: tags: - "*" # triggers only if push new tag versi

我使用goreleaser构建github操作。 因为my main.go位于
/cmd/tes_cli
,所以它总是在github操作中显示错误

repo does not contain a main function.
我检查了原始文档,似乎“构建”可以工作。我的配置无法添加
版本

name: Release Go project

on:
  push:
    tags:
      - "*" # triggers only if push new tag version, like `0.8.4` or else

jobs:
  build:
    name: GoReleaser build
    runs-on: ubuntu-latest

    steps:
      - name: Check out code into the Go module directory
        uses: actions/checkout@v2
        with:
          fetch-depth: 0 # See: https://goreleaser.com/ci/actions/

      - name: Set up Go 1.14
        uses: actions/setup-go@v2
        with:
          go-version: 1.14
        id: go

      - name: Run GoReleaser
        uses: goreleaser/goreleaser-action@master
        with:
          version: latest
          args: release --rm-dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

添加一个额外的配置文件来解析它

提及

链接到另一个配置文件

# .goreleaser.yml
project_name: import_disqus_cli
builds:
  - env: [CGO_ENABLED=0]
    goos:
      - linux
      - windows
      - darwin
    goarch:
      - amd64
      - arm64
    id: "import_disqus_cli"
    dir: .
    main: ./cmd/test_cli

# .goreleaser.yml
project_name: import_disqus_cli
builds:
  - env: [CGO_ENABLED=0]
    goos:
      - linux
      - windows
      - darwin
    goarch:
      - amd64
      - arm64
    id: "import_disqus_cli"
    dir: .
    main: ./cmd/test_cli