From 6e2880c0788d0cd6b57c9e607ae0d83621cb8757 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 11:56:42 +0000 Subject: [PATCH] Add Gitea Actions workflow: release.yml --- .gitea/workflows/release.yml | 49 ++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .gitea/workflows/release.yml diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 0000000..c9bc419 --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,49 @@ +name: Release + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + + - name: Install build dependencies + run: pip install build + + - name: Build package + run: python -m build + + - name: Create Release + uses: https://gitea.com/actions/release-action@main + with: + files: | + dist/** + title: Release ${{ github.ref_name }} + body: | + ## What's Changed + + Initial release of Shell Memory CLI! + + ### Features + - Command recording with tags and descriptions + - Pattern detection for command sequences + - Session recording and replay + - Natural language script generation + + ### Installation + ```bash + pip install shell-memory-cli + ``` + + Full changelog: https://7000pct.gitea.bloupla.net/7000pctAUTO/shell-memory-cli/commits/branch/main + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}