A drop-in, single-binary reimplementation of the caronc/apprise-api HTTP API in Go.
0

Configure Feed

Select the types of activity you want to include in your feed.

add github release workflow

Kohei Watanabe (Jun 9, 2026, 12:22 AM +0900) f1d505f9 a04e29dc

+24
+24
.github/workflows/release.yml
··· 1 + name: release 2 + on: 3 + push: 4 + tags: 5 + - "v*" 6 + permissions: 7 + contents: write 8 + packages: write 9 + jobs: 10 + goreleaser: 11 + runs-on: ubuntu-latest 12 + steps: 13 + - uses: actions/checkout@v4 14 + with: 15 + fetch-depth: 0 16 + - uses: actions/setup-go@v5 17 + with: 18 + go-version-file: go.mod 19 + - uses: ko-build/setup-ko@v0.9 20 + - uses: goreleaser/goreleaser-action@v6 21 + with: 22 + args: release --clean 23 + env: 24 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}