Re-add build-cli workflow

This commit is contained in:
Malte Poll 2022-08-19 18:29:10 +02:00
parent f16e4bd5f9
commit cdcbed6ff9

19
.github/workflows/build-cli.yml vendored Normal file
View File

@ -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 }}