raycast-rsync-extension 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -66,17 +66,20 @@ jobs:
|
|
|
66
66
|
run: |
|
|
67
67
|
VERSION=${{ steps.package-info.outputs.version }}
|
|
68
68
|
PACKAGE_NAME="${{ steps.package-info.outputs.name }}"
|
|
69
|
+
OWNER="${{ github.repository_owner }}"
|
|
70
|
+
SCOPED_NAME="@${OWNER}/${PACKAGE_NAME}"
|
|
69
71
|
|
|
70
72
|
# Set up GitHub Packages registry
|
|
71
73
|
npm config set registry https://npm.pkg.github.com
|
|
72
74
|
npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}
|
|
73
75
|
|
|
74
|
-
if
|
|
76
|
+
# Check if the scoped package version already exists
|
|
77
|
+
if npm view "${SCOPED_NAME}@${VERSION}" version >/dev/null 2>&1; then
|
|
75
78
|
echo "exists=true" >> $GITHUB_OUTPUT
|
|
76
|
-
echo "Version $VERSION already exists, skipping publish"
|
|
79
|
+
echo "Version ${VERSION} already exists for ${SCOPED_NAME}, skipping publish"
|
|
77
80
|
else
|
|
78
81
|
echo "exists=false" >> $GITHUB_OUTPUT
|
|
79
|
-
echo "Version $VERSION is new, will publish"
|
|
82
|
+
echo "Version ${VERSION} is new for ${SCOPED_NAME}, will publish"
|
|
80
83
|
fi
|
|
81
84
|
continue-on-error: true
|
|
82
85
|
|
|
@@ -135,7 +138,7 @@ jobs:
|
|
|
135
138
|
uses: softprops/action-gh-release@v2
|
|
136
139
|
with:
|
|
137
140
|
tag_name: v${{ steps.package-info.outputs.version }}
|
|
138
|
-
name:
|
|
141
|
+
name: v${{ steps.package-info.outputs.version }}
|
|
139
142
|
body: |
|
|
140
143
|
## ${{ steps.package-info.outputs.name }}@v${{ steps.package-info.outputs.version }}
|
|
141
144
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.raycast.com/schemas/extension.json",
|
|
3
3
|
"name": "raycast-rsync-extension",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"title": "Rsync File Transfer",
|
|
6
6
|
"description": "Transfer files between local and remote servers using rsync with SSH config integration",
|
|
7
7
|
"icon": "icon.png",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@raycast/api": "^1.65.0",
|
|
65
|
-
"@raycast/utils": "^
|
|
65
|
+
"@raycast/utils": "^2.2.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@raycast/eslint-config": "^2.1.1",
|
|
69
|
-
"@types/node": "^
|
|
69
|
+
"@types/node": "^25.0.10",
|
|
70
70
|
"@types/react": "19.0.10",
|
|
71
71
|
"@vitest/ui": "^4.0.17",
|
|
72
72
|
"eslint": "^9.39.2",
|