feature: add websocket server (#1) #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on https://github.com/BurntSushi/ripgrep/blob/master/.github/workflows/release.yml by BurntSushi (License MIT) | |
name: release | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
create-release: | |
name: create-release | |
runs-on: ubuntu-22.04 | |
outputs: | |
upload_url: ${{ steps.release.outputs.upload_url }} | |
rg_version: ${{ env.RG_VERSION }} | |
steps: | |
- name: Get the release version from the tag | |
shell: bash | |
if: env.RG_VERSION == '' | |
run: | | |
echo "RG_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
echo "version is: ${{ env.RG_VERSION }}" | |
- name: Create GitHub release | |
id: release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.RG_VERSION }} | |
release_name: ${{ env.RG_VERSION }} | |
build-release: | |
name: build-release | |
needs: ['create-release'] | |
strategy: | |
fail-fast: true | |
max-parallel: 1 | |
matrix: | |
os: [windows-2022, macos-13, ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- uses: actions/cache@v3 | |
id: npm-cache | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-node- | |
- name: npm ci | |
run: npm ci | |
if: steps.npm-cache.outputs.cache-hit != 'true' | |
- run: npm test | |
- run: node scripts/build.js | |
- run: npm publish --access public | |
if: matrix.os == 'ubuntu-22.04' | |
working-directory: ./dist | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |