Skip to content

publish 0.1.88 (#127) #52

publish 0.1.88 (#127)

publish 0.1.88 (#127) #52

Workflow file for this run

name: 'RELEASE'
on:
push:
tags:
- '*'
permissions:
id-token: write
contents: read
issues: write
pull-requests: write
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Build Changelog
id: generatechangelog
uses: mikepenz/[email protected]
with:
configuration: ".github/workflows/changelog-config.json"
ignorePreReleases: "true"
env:
GITHUB_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
- name: Make release
id: release
uses: softprops/action-gh-release@master
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: ${{ steps.generatechangelog.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_WRITE }}