From 40ccf5b1d7d5de7a4e583a4b23dd8795e87be303 Mon Sep 17 00:00:00 2001 From: f-trycua Date: Mon, 17 Mar 2025 16:01:32 +0100 Subject: [PATCH] Restore lume-v tags --- .github/workflows/publish-lume.yml | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/.github/workflows/publish-lume.yml b/.github/workflows/publish-lume.yml index b59116b5..5115a1c6 100644 --- a/.github/workflows/publish-lume.yml +++ b/.github/workflows/publish-lume.yml @@ -3,7 +3,7 @@ name: Publish Notarized Lume on: push: tags: - - 'v*' + - 'lume-v*' workflow_dispatch: inputs: version: @@ -69,8 +69,8 @@ jobs: id: set_version run: | # Determine version from tag or input - if [[ "$GITHUB_REF" == refs/tags/v* ]]; then - VERSION="${GITHUB_REF#refs/tags/v}" + if [[ "$GITHUB_REF" == refs/tags/lume-v* ]]; then + VERSION="${GITHUB_REF#refs/tags/lume-v}" echo "Using version from tag: $VERSION" elif [[ -n "${{ inputs.version }}" ]]; then VERSION="${{ inputs.version }}" @@ -225,7 +225,7 @@ jobs: if-no-files-found: error - name: Create Release - if: startsWith(github.ref, 'refs/tags/') + if: startsWith(github.ref, 'refs/tags/lume-v') uses: softprops/action-gh-release@v1 with: files: | @@ -238,19 +238,8 @@ jobs: body: | ${{ steps.generate_checksums.outputs.checksums }} - ### Installation with Mise and Ubi - - ```bash - # Using the parent repository (contains all Cua tools) - mise use -g ubi:trycua/cua - - # Or run it directly - mise x ubi:trycua/cua@latest -- lume - ``` - - ### Installation with Homebrew - - ```bash - brew install trycua/tap/lume + ### Installation with script + + /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/lume/scripts/install.sh)" ``` generate_release_notes: true \ No newline at end of file