Skip to content

Commit

Permalink
release: v1.11.1a59
Browse files Browse the repository at this point in the history
  • Loading branch information
yurijmikhalevich committed Feb 20, 2025
1 parent 00159cb commit 0bbd9cd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 40 deletions.
32 changes: 0 additions & 32 deletions .github/actions/test-system-rclip-windows/action.yaml

This file was deleted.

14 changes: 10 additions & 4 deletions .github/actions/test-system-rclip/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ inputs:
required: false
default: '3.10'

env:
# on Windows, we manually load latest PATH to ensure that the action will be
# able to find the system rclip
WINDOWS_SHELL: powershell -NoLogo -NonInteractive -ExecutionPolicy RemoteSigned -Command "$env:Path = [Environment]::GetEnvironmentVariable('Path', 'Machine') + ';' + [Environment]::GetEnvironmentVariable('Path', 'User'); & {0}"
# passing `-ieo pipefail` to the shell to ensure it reads `.bashrc`
UNIX_SHELL: bash -ieo pipefail {0}

runs:
using: 'composite'
steps:
Expand All @@ -22,12 +29,11 @@ runs:
pip install --upgrade poetry
poetry install --no-root --only dev
# here and below, passing `-ieo pipefail` to the shell to ensure it reads `.bashrc`
shell: bash -ieo pipefail {0}
shell: ${{ runner.os == 'Windows' && env.WINDOWS_SHELL || env.UNIX_SHELL }}
- name: Print tested rclip version
run: |
which rclip
ls -lah $(which rclip)
rclip --version
shell: bash -ieo pipefail {0}
shell: ${{ runner.os == 'Windows' && env.WINDOWS_SHELL || env.UNIX_SHELL }}
- run: make test-system-rclip
shell: bash -ieo pipefail {0}
shell: ${{ runner.os == 'Windows' && env.WINDOWS_SHELL || env.UNIX_SHELL }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ jobs:
name: windows
- name: Install MSI
run: Start-Process msiexec.exe -Wait -ArgumentList '/i rclip-${{ needs.parse_tag.outputs.version }}.msi /quiet'
- uses: ./.github/actions/test-system-rclip-windows
- uses: ./.github/actions/test-system-rclip

# create_release:
# needs: [parse_tag, pypi-release, snap-release, appimage-test, windows-test]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rclip"
version = "1.11.1a58"
version = "1.11.1a59"
description = "AI-Powered Command-Line Photo Search Tool"
authors = ["Yurij Mikhalevich <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: |
For a detailed demonstration, watch the video: https://www.youtube.com/watch?v=tAJHXOkHidw.
You can use another image as a query by passing a file path or even an URL to the image file to **rclip** and combine multiple queries. Check out the project's README on GitHub for more usage examples: https://github.com/yurijmikhalevich/rclip#readme.
version: 1.11.1a58
version: 1.11.1a59
website: https://github.com/yurijmikhalevich/rclip
contact: [email protected]
passthrough:
Expand All @@ -28,7 +28,7 @@ apps:
parts:
rclip:
plugin: python
source: ./snap/local/rclip-1.11.1a58.tar.gz
source: ./snap/local/rclip-1.11.1a59.tar.gz
build-packages:
- python3-pip
build-environment:
Expand Down

0 comments on commit 0bbd9cd

Please sign in to comment.