Skip to content

fix(scripts): skip coverage for integration tests in release #1

fix(scripts): skip coverage for integration tests in release

fix(scripts): skip coverage for integration tests in release #1

Workflow file for this run

name: Create GitHub Release
on:
push:
tags:
- "v[0-9]+.*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Generate changelog
uses: orhun/git-cliff-action@v4
id: changelog
with:
config: cliff.toml
args: --latest --strip header
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
body: ${{ steps.changelog.outputs.content }}
token: ${{ secrets.GITHUB_TOKEN }}