Skip to content

Commit ebf7393

Browse files
committed
⭐️ new GitHub actions workflow to release cnspec policies
1 parent 3ce0293 commit ebf7393

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

workflows/release.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Release Policies
3+
4+
on:
5+
push:
6+
tags:
7+
- "v*.*.*"
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v3
15+
- name: Release
16+
uses: softprops/action-gh-release@v1
17+
with:
18+
files: "**/*.mql.yaml"
19+
generate_release_notes: true
20+
fail_on_unmatched_files: true

0 commit comments

Comments
 (0)