Skip to content

chore: update changelog for v1.12.0 #9

chore: update changelog for v1.12.0

chore: update changelog for v1.12.0 #9

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build-and-release:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build app bundle
run: make build
- name: Zip app bundle
run: |
cd build
zip -r ClaudeNotifier.zip ClaudeNotifier.app
- name: Upload to GitHub Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload "${{ github.ref_name }}" build/ClaudeNotifier.zip --clobber