Skip to content

Commit

Permalink
Added GitHub action to generate OpenVEX data with each release
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeram-venkitesh committed Dec 27, 2023
1 parent d4ff37c commit 72870e7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/openvex.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
workflow_dispatch:
push:
tags:
- 'v*.*.*'
jobs:
vexctl:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: openvex/generate-vex@31b415924ea0d72ed5f2640f1dee59dea6c2770b
name: Run vexctl
with:
product: pkg:generic/hello@${{ env.RELEASE_VERSION }}

0 comments on commit 72870e7

Please sign in to comment.