We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Push does not seem to work when running a buf.yaml at version 2:
buf.yaml
version: v2 modules: - path: proto/ name: buf.custom.domain/foo/bar breaking: ignore_unstable_packages: true use: - FILE lint: use: - STANDARD
Workflows:
name: Push on: push: paths: - "**.proto" - "**/buf.yaml" - "**/buf.lock" - "**/README.md" permissions: contents: read jobs: buf: name: Buf runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: bufbuild/buf-action@v1 with: token: ${{ secrets.BUF_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }} domain: buf.custom.domain input: proto push: true
Debug output from the action:
##[debug]Skipping push, no named modules detected
I can also push with buf push --label foo locally using buf at v1.46.0.
buf push --label foo
buf
v1.46.0
buf config ls-modules --format name lists buf.custom.domain/foo/bar
buf config ls-modules --format name
buf.custom.domain/foo/bar
buf build --error-format github-actions proto lists no output.
buf build --error-format github-actions proto
The text was updated successfully, but these errors were encountered:
It was the input: proto which is no longer required for v2 workflows. Closing.
input: proto
v2
Sorry, something went wrong.
No branches or pull requests
What
Push does not seem to work when running a
buf.yaml
at version 2:Workflows:
Debug output from the action:
I can also push with
buf push --label foo
locally usingbuf
atv1.46.0
.buf config ls-modules --format name
listsbuf.custom.domain/foo/bar
buf build --error-format github-actions proto
lists no output.The text was updated successfully, but these errors were encountered: