Skip to content

updated upload and scan sbom section to run only when deps-graph is d… #7

updated upload and scan sbom section to run only when deps-graph is d…

updated upload and scan sbom section to run only when deps-graph is d… #7

Workflow file for this run

name: Release on tag
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
release:
name: Create Release
runs-on: 'ubuntu-22.04'
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release Notes
run: |
git log $(git describe HEAD~ --tags --abbrev=0)..HEAD --pretty='format:* %h %s%n * %an <%ae>' --no-merges >> ".github/RELEASE-TEMPLATE.md"
- name: Release with Notes
uses: softprops/action-gh-release@v1
with:
body_path: ".github/RELEASE-TEMPLATE.md"
draft: false