File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105105 npm run build
106106
107107 - name : Python Semantic Release
108- id : release
108+ id : pypi
109109 uses : python-semantic-release/python-semantic-release@v10.4.0
110110 with :
111111 github_token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11from pathlib import Path
22
3+ from trame_xterm import __version__
4+
35serve_path = str (Path (__file__ ).with_name ("serve" ).resolve ())
4- serve = {"__trame_xterm " : serve_path }
5- scripts = ["__trame_xterm /trame-xterm.umd.js" ]
6- styles = ["__trame_xterm /style.css" ]
6+ serve = {f"__trame_xterm_ { __version__ } " : serve_path }
7+ scripts = [f"__trame_xterm_ { __version__ } /trame-xterm.umd.js" ]
8+ styles = [f"__trame_xterm_ { __version__ } /style.css" ]
79vue_use = ["trame_xterm" ]
You can’t perform that action at this time.
0 commit comments