From cdcbed6ff93db344d374d47a09c6e6fe508dda4c Mon Sep 17 00:00:00 2001 From: Malte Poll Date: Fri, 19 Aug 2022 18:29:10 +0200 Subject: [PATCH] Re-add build-cli workflow --- .github/workflows/build-cli.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build-cli.yml diff --git a/.github/workflows/build-cli.yml b/.github/workflows/build-cli.yml new file mode 100644 index 000000000..c91d071ce --- /dev/null +++ b/.github/workflows/build-cli.yml @@ -0,0 +1,19 @@ +name: Build CLI and prepare release + +on: + workflow_dispatch: + +jobs: + build-cli: + runs-on: ubuntu-latest + steps: + - name: Checkout + id: checkout + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + + - name: Build cli + uses: ./.github/actions/build_cli + with: + cosignPublicKey: ${{ secrets.COSIGN_PUBLIC_KEY }} + cosignPrivateKey: ${{ secrets.COSIGN_PRIVATE_KEY }} + cosignPassword: ${{ secrets.COSIGN_PASSWORD }}