Skip to content

Commit 2ce33c7

Browse files
authored
Merge pull request #4 from sodgeit/ci
ci: publish workflow
2 parents 486a4a1 + 594fd55 commit 2ce33c7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/publish.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
build:
10+
name: Publish CMake-SBOM-Builder
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Upload sbom.cmake to release
16+
uses: svenstaro/upload-release-action@v1-release
17+
with:
18+
repo_token: ${{ secrets.GITHUB_TOKEN }}
19+
tag: ${{ github.ref }}
20+
file: cmake/sbom.cmake
21+
file_glob: true
22+
overwrite: true

0 commit comments

Comments
 (0)