Skip to content

Commit 1ed09e5

Browse files
committed
feat(build): publish OpenVEX documents for new releases
1 parent 1267a89 commit 1ed09e5

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/openvex.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: OpenVEX
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types:
7+
- released
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
vexctl:
14+
runs-on: ubuntu-latest
15+
16+
permissions:
17+
contents: write
18+
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
23+
- name: Set environment variables
24+
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
25+
26+
- name: Run vexctl
27+
uses: openvex/generate-vex@c59881b41451d7ccba5c3b74cd195382b8971fcd
28+
# Refer: https://github.com/openvex/vexctl#operational-model
29+
with:
30+
product: pkg:golang/github.com/enix/x509-certificate-exporter/v3@${{ env.RELEASE_VERSION }}
31+
file: x509-certificate-exporter.openvex.json
32+
33+
- name: Upload OpenVEX document to GitHub Release
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
run: |
37+
gh release upload ${{ env.RELEASE_VERSION }} x509-certificate-exporter.openvex.json

0 commit comments

Comments
 (0)