Skip to content

ci: generate changelog using git-chlog #7

ci: generate changelog using git-chlog

ci: generate changelog using git-chlog #7

Workflow file for this run

name: Release
permissions:
contents: write
on:
push:
tags:
- v[0-9]+.*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate changelog
id: gen_changelog
uses: bdashrad/git-chglog-action@v2.0.3
with:
next_version: "1.0.0"
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
token: ${{ secrets.GH_TOKEN }}
upload-assets:
needs: create-release
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: vaultkeeper
tar: unix
zip: windows
features: ${{ matrix.features || '' }}
token: ${{ secrets.GH_TOKEN }}