Skip to content

Commit

Permalink
Merge branch 'master' of github.com:redhat-developer/yaml-language-se…
Browse files Browse the repository at this point in the history
…rver into fix-redhat-developer#364
  • Loading branch information
evidolob committed Dec 14, 2020
2 parents faf801f + 85b0ac7 commit 8d2857a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: 12
registry-url: 'https://registry.npmjs.org'
registry-url: "https://registry.npmjs.org"

# Run install dependencies
- name: Install dependencies
Expand All @@ -45,33 +45,33 @@ jobs:
uses: GabrielBB/[email protected]
with:
run: yarn coveralls

# Run Coveralls
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish

- name: Publish
if: ${{ success() && runner.os == 'Linux' && github.event_name == 'push' && github.ref == 'refs/heads/master'}}
run: yarn publish --tag next --no-git-tag-version --prepatch --preid "$(git rev-parse --short HEAD)"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# Setup QEMU as requirement for docker
- name: Set up QEMU
if: ${{ success() && runner.os == 'Linux'}}
if: ${{ success() && runner.os == 'Linux' && github.event_name == 'push' && github.ref == 'refs/heads/master'}}
uses: docker/setup-qemu-action@v1

# Setup DockerBuildx as requirement for docker
- name: Set up Docker Buildx
if: ${{ success() && runner.os == 'Linux'}}
if: ${{ success() && runner.os == 'Linux' && github.event_name == 'push' && github.ref == 'refs/heads/master'}}
uses: docker/setup-buildx-action@v1

# Login to Quay
- name: Login to Quay
if: ${{ success() && runner.os == 'Linux'}}
uses: docker/login-action@v1
if: ${{ success() && runner.os == 'Linux' && github.event_name == 'push' && github.ref == 'refs/heads/master'}}
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ This repository only contains the server implementation. Here are some known cli
```bash
$ yarn run build
```
5. The new built server is now location in out/server/src/server.js.
5. The new built server is now located in ./out/server/src/server.js.
```bash
node (Yaml Language Server Location)/out/server/src/server.js [--stdio]
```
Expand Down

0 comments on commit 8d2857a

Please sign in to comment.