Skip to content

Commit da8932b

Browse files
committed
update
1 parent 2201125 commit da8932b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
sudo lua -e '
3333
require("metadata");
3434
local dkjson = require("dkjson");
35-
PLUGIN.downloadUrl = "https://github.com/${{ github.repository }}/releases/download/v${{ env.VERSION }}/${{ env.REPO_NAME }}_${{ env.VERSION }}.zip";
35+
PLUGIN.downloadUrl = "https://github.com/${{ github.repository }}/releases/download/v${{ env.VERSION }}/${{ env.REPO_NAME }}-${{ env.VERSION }}.zip";
3636
local str = dkjson.encode(PLUGIN);
3737
print(str)' > manifest.json
3838
cat manifest.json
@@ -42,9 +42,9 @@ jobs:
4242
name: manifest
4343
path: manifest.json
4444
release-plugin-and-manifest:
45-
needs: generate-manifest-json
46-
runs-on: ubuntu-latest
47-
steps:
45+
needs: generate-manifest-json
46+
runs-on: ubuntu-latest
47+
steps:
4848
- name: Set repo name
4949
run: |
5050
echo "REPO_NAME=$(echo ${{ github.repository }} | cut -d'/' -f2)" >> $GITHUB_ENV

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Python plugin for [vfox](https://vfox.lhan.me/).
77
After installing [vfox](https://github.com/version-fox/vfox), install the plugin by running:
88

99
```bash
10-
vfox install python
10+
vfox add python
1111
```

metadata.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PLUGIN = {}
55
--- Plugin name
66
PLUGIN.name = "python"
77
--- Plugin version
8-
PLUGIN.version = "0.1.0"
8+
PLUGIN.version = "0.1.1"
99
--- Plugin homepage
1010
PLUGIN.homepage = "https://github.com/version-fox/vfox-python"
1111
--- Plugin license, please choose a correct license according to your needs.

0 commit comments

Comments
 (0)