diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..0a7c382 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,15 @@ +on: push # Apply to all push +jobs: + push-module: + runs-on: ubuntu-latest + steps: + # Run `git checkout` + - uses: actions/checkout@v2 + # Install the `buf` CLI + - uses: bufbuild/buf-setup-action@v1 + # Push module to the BSR + - uses: bufbuild/buf-push-action@v1 + with: + buf_token: ${{ secrets.BUF_TOKEN }} + create_visibility: private + draft: ${{ github.ref_name != 'main'}} \ No newline at end of file