File tree 1 file changed +14
-12
lines changed
1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -32,19 +32,21 @@ jobs:
32
32
path : dist/codicon.ttf
33
33
34
34
- name : Pull Request to microsoft/vscode
35
- run : |
36
- git config user.email "[email protected] "
37
- git config user.name "GitHub Actions at microsoft/vscode-codicons"
38
- git clone https://github.com/microsoft/vscode.git
39
- cd vscode
40
- git checkout -b update-codicons
41
- cp ../dist/codicon.ttf src/vs/base/browser/ui/codicons/codicon/
42
- # TODO: Generate mapping file
35
+ run : |
36
+ git clone https://github.com/microsoft/vscode.git && cd vscode
37
+
38
+ git config user.email "[email protected] "
39
+ git config user.name "GitHub Actions at microsoft/vscode-codicons"
40
+
41
+ git checkout -b update-codicons
42
+ cp ../dist/codicon.ttf src/vs/base/browser/ui/codicons/codicon/
43
+ cp ../dist/codiconsLibrary.ts src/vs/base/common/
44
+
45
+ git add .
46
+ git commit -m "Update codicons to ${{ github.ref }}"
47
+ git push -f origin update-codicons
43
48
44
- git add .
45
- git commit --no-verify -m "Update codicons to ${{ github.ref }}"
46
- git push -f origin update-codicons
47
- # TODO: Create PR
49
+ # TODO: Create the PR
48
50
49
51
publish :
50
52
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments