Skip to content

chore: cleanup example env #4

chore: cleanup example env

chore: cleanup example env #4

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build:
name: Publish Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Extract changelog
id: changelog
run: awk -f ./release_notes.awk ./CHANGELOG.md > release.md
- name: Create GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
bodyFile: release.md
artifacts: ./build/*