elk/.github/workflows/release.yml

27 lines
408 B
YAML
Raw Normal View History

2023-01-10 09:01:50 +00:00
name: Release
2023-01-13 11:54:59 +00:00
permissions:
contents: write
2023-01-10 09:01:50 +00:00
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2023-01-10 09:01:50 +00:00
with:
fetch-depth: 0
- name: Set node
uses: actions/setup-node@v4
2023-01-10 09:01:50 +00:00
with:
node-version: 18
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}