From e6144f2feccacb8ba03ef6ba014a09db6b99e6ac Mon Sep 17 00:00:00 2001 From: prnvkv Date: Sat, 16 Dec 2023 00:34:12 +0530 Subject: [PATCH] New workflow which will generate openvex data on each release Signed-off-by: prnvkv Co-authored-by: Sandipan Panda Co-authored-by: Sonu Singh --- .github/workflows/vex.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/vex.yml diff --git a/.github/workflows/vex.yml b/.github/workflows/vex.yml new file mode 100644 index 000000000000..2c7eaf8d9be4 --- /dev/null +++ b/.github/workflows/vex.yml @@ -0,0 +1,18 @@ +on: + workflow_dispatch: + push: + tags: + - 'v*.*.*' +jobs: + vexctl: + runs-on: ubuntu-20.04 + steps: + - name: Checkout code + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - name: Set env + run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV + - uses: openvex/generate-vex@31b415924ea0d72ed5f2640f1dee59dea6c2770b + name: Run vexctl + with: + product: pkg:golang/k8s.io/minikube@@${{ env.RELEASE_VERSION }} +