File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -30,43 +30,43 @@ jobs:
30
30
with :
31
31
node-version : 18
32
32
33
- - name : Install dependencies
33
+ - name : 📦 Install dependencies
34
34
run : npm install
35
35
36
- - name : Install vsce
36
+ - name : 🎁 Install vsce
37
37
run : npm install -g @vscode/vsce
38
38
39
- - name : Install cross-env
39
+ - name : 🖥️ Install cross-env
40
40
run : npm install -g cross-env
41
41
42
- - name : NBGV
42
+ - name : 🏷️ NBGV
43
43
uses : dotnet/nbgv@master
44
44
id : nbgv
45
45
with :
46
46
stamp : package.json
47
47
48
- - name : NBGV outputs
48
+ - name : 🗣️ NBGV outputs
49
49
run : |
50
50
echo "SimpleVersion: ${{ steps.nbgv.outputs.SimpleVersion }}"
51
51
52
- - name : Package
52
+ - name : 📦 Package
53
53
run : |
54
54
vsce package -o ./${{ github.event.repository.name}}.vsix
55
55
56
- - name : Publish
56
+ - name : 📰 Publish
57
57
if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
58
58
run : npm run deploy
59
59
env :
60
60
VSCE_PAT : ${{ secrets.VSCE_PAT }}
61
61
62
- - name : Upload artifact
62
+ - name : ⬆️ Upload artifact
63
63
uses : actions/upload-artifact@v3
64
64
with :
65
65
name : ${{ github.event.repository.name}}.vsix
66
66
path : |
67
67
"**/*.vsix"
68
68
69
- - name : Tag and Release
69
+ - name : 🏷️ Tag and Release
70
70
id : tag_release
71
71
uses : softprops/action-gh-release@v1
72
72
with :
Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ export class ResxProvider implements vscode.CustomTextEditorProvider {
134
134
const webviewUri = webview . asWebviewUri ( vscode . Uri . joinPath ( this . context . extensionUri , 'out' , 'webview.js' ) ) ;
135
135
const nonce = getNonce ( ) ;
136
136
const codiconsUri = webview . asWebviewUri ( vscode . Uri . joinPath ( this . context . extensionUri , 'media' , 'codicon.css' ) ) ;
137
- const codiconsFont = webview . asWebviewUri ( vscode . Uri . joinPath ( this . context . extensionUri , 'media' , 'codicon.ttf' ) ) ;
138
137
139
138
return /*html*/ `
140
139
<!DOCTYPE html>
You can’t perform that action at this time.
0 commit comments