From 9336cb6b43b65838dbadf4ee0a14fa0034ecd275 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 17 Oct 2022 11:23:47 -0700 Subject: [PATCH] Add bindgen-cli build --- .github/workflows/bindgen.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/bindgen.yml diff --git a/.github/workflows/bindgen.yml b/.github/workflows/bindgen.yml new file mode 100644 index 0000000..e72e8e6 --- /dev/null +++ b/.github/workflows/bindgen.yml @@ -0,0 +1,16 @@ +name: bindgen-cli + +on: + push: + branches: + - bindgen-cli + +jobs: + build: + uses: ./.github/workflows/build.yml + with: + crate: bindgen-cli + bin: bindgen + permissions: + contents: write + secrets: inherit