diff --git a/workflows/release.yaml b/workflows/release.yaml new file mode 100644 index 0000000..f99661d --- /dev/null +++ b/workflows/release.yaml @@ -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