Skip to content

Commit dcdb67c

Browse files
modify workflow
1 parent 9ea5746 commit dcdb67c

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/cache@v2
3333
with:
3434
path: |
35-
./bazel-ls-vscode-0.0.1.vsix
35+
./bazel-vscode-0.0.2.vsix
3636
key: ${{ env.cache-name }}-${{ github.run_id }}
3737
publish:
3838
needs: [build]
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- uses: actions/cache@v2
4343
with:
44-
path: ./bazel-ls-vscode-0.0.1.vsix
44+
path: ./bazel-vscode-0.0.2.vsix
4545
key: ${{ env.cache-name }}-${{ github.run_id }}
4646
- name: Create tag
4747
if: contains(github.ref, 'master')
@@ -67,8 +67,8 @@ jobs:
6767
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6868
with:
6969
upload_url: ${{ steps.create_release.outputs.upload_url }}
70-
asset_path: ./bazel-ls-vscode-0.0.1.vsix
71-
asset_name: bazel-ls-vscode-0.0.1.vsix
70+
asset_path: ./bazel-vscode-0.0.2.vsix
71+
asset_name: bazel-vscode-0.0.2.vsix
7272
asset_content_type: application/octet-stream
7373
- name: Publish Release
7474
if: contains(github.ref, 'master')

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
![GitHub Actions](https://github.com/salesforce/bazel-ls-vscode/workflows/main/badge.svg)
1+
![GitHub Actions](https://github.com/salesforce/bazel-vscode/workflows/main/badge.svg)
22
[![](https://img.shields.io/badge/license-BSD%203-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
33

44
Bazel for Java
55
===========================
66

77
Installation
88
--------------------
9-
You can download the latest build from the [Releases](https://github.com/salesforce/bazel-ls-vscode/releases) or package the extension by yourself:
9+
You can download the latest build from the [Releases](https://github.com/salesforce/bazel-vscode/releases) or package the extension by yourself:
1010
1. [Install](https://code.visualstudio.com/api/working-with-extensions/publishing-extension#installation) `vsce` CLI tool:
1111
```bash
1212
npm install -g vsce
1313
```
1414
2. Clone the repository
1515
```bash
16-
git clone [email protected]:salesforce/bazel-ls-vscode.git
16+
git clone [email protected]:salesforce/bazel-vscode.git
1717
```
1818
3. Install the dependencies:
1919
```bash
20-
cd bazel-ls-vscode
20+
cd bazel-vscode
2121
npm install
2222
```
2323
4. Compile source code:

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const bazelEclipseDir = path.join(__dirname, 'bazel-eclipse');
99

1010
gulp.task('build-plugin', (done) => {
1111
fs.readdirSync(__dirname).forEach((file, index) => {
12-
if (file.match('.*bazel-ls-vscode-.*\\.vsix')) {
12+
if (file.match('.*bazel-vscode-.*\\.vsix')) {
1313
fs.unlinkSync(file);
1414
}
1515
});

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "bazel-ls-vscode",
3-
"displayName": "bazel-ls-vscode",
2+
"name": "bazel-vscode",
3+
"displayName": "bazel-vscode",
44
"publisher": "salesforce",
5-
"repository": "https://github.com/salesforce/bazel-ls-vscode",
6-
"description": "bazel-ls-vscode",
5+
"repository": "https://github.com/salesforce/bazel-vscode",
6+
"description": "bazel-vscode",
77
"version": "0.0.2",
88
"engines": {
99
"vscode": "^1.46.0"

0 commit comments

Comments
 (0)