From 169b6fc0d80f00f01b204179420b88b50eb66cce Mon Sep 17 00:00:00 2001 From: Ahmad Wilson Date: Sun, 7 Jun 2026 14:01:36 -0500 Subject: [PATCH] Add semantic release workflow for automated versioning. Schedule weekly releases and allow manual dispatch using go-semantic-release. Co-authored-by: Cursor --- .github/workflows/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..5e6a8a5 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: Create Release + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * 1" + +jobs: + release: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: go-semantic-release/action@v1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + allow-initial-development-versions: true