Skip to content

Commit

Permalink
⭐️ new GitHub actions workflow to release cnspec policies
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed May 9, 2023
1 parent 3ce0293 commit ebf7393
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Release Policies

on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Release
uses: softprops/action-gh-release@v1
with:
files: "**/*.mql.yaml"
generate_release_notes: true
fail_on_unmatched_files: true

0 comments on commit ebf7393

Please sign in to comment.