File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 32
32
sudo lua -e '
33
33
require("metadata");
34
34
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";
36
36
local str = dkjson.encode(PLUGIN);
37
37
print(str)' > manifest.json
38
38
cat manifest.json
42
42
name : manifest
43
43
path : manifest.json
44
44
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 :
48
48
- name : Set repo name
49
49
run : |
50
50
echo "REPO_NAME=$(echo ${{ github.repository }} | cut -d'/' -f2)" >> $GITHUB_ENV
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ Python plugin for [vfox](https://vfox.lhan.me/).
7
7
After installing [ vfox] ( https://github.com/version-fox/vfox ) , install the plugin by running:
8
8
9
9
``` bash
10
- vfox install python
10
+ vfox add python
11
11
```
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ PLUGIN = {}
5
5
--- Plugin name
6
6
PLUGIN .name = " python"
7
7
--- Plugin version
8
- PLUGIN .version = " 0.1.0 "
8
+ PLUGIN .version = " 0.1.1 "
9
9
--- Plugin homepage
10
10
PLUGIN .homepage = " https://github.com/version-fox/vfox-python"
11
11
--- Plugin license, please choose a correct license according to your needs.
You can’t perform that action at this time.
0 commit comments