Skip to content

👷 ci: Adds automatic Github Release publisher workflow #3

👷 ci: Adds automatic Github Release publisher workflow

👷 ci: Adds automatic Github Release publisher workflow #3

Workflow file for this run

name: Publish release
on:
push:
tags:
- "v*.*.*"
pull_request:
permissions:
contents: read
jobs:
label:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: mikepenz/release-changelog-builder-action@f3fc77b47b74e78971fffecb2102ae6eac9a44d6 # v5
id: build_changelog
with:
configuration: .github/changelog.json
failOnError: "true"
fetchReviewers: "true"
- run: |
echo <<-EOF
${{steps.build_changelog.outputs.changelog}}
EOF