Skip to content

Commit 7fd61aa

Browse files
committed
build: Fix whitespace
1 parent 1204b00 commit 7fd61aa

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

.github/workflows/build.yml

+14-12
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,21 @@ jobs:
3232
path: dist/codicon.ttf
3333

3434
- 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
4348
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
4850
4951
publish:
5052
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)