Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

feat: remove support for new-webclient #46

feat: remove support for new-webclient

feat: remove support for new-webclient #46

Workflow file for this run

name: Semantic Release
on:
push:
branches:
- main
jobs:
semantic-release:
name: Run Semantic Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Read .nvmrc
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- run: node -v && npm -v
- run: npm ci
- run: npm run build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
id: semantic # Need an `id` for output variables
with:
semantic_version: 19.0.5
extra_plugins: |
@semantic-release/changelog@6.0.2
@semantic-release/git@10.0.1
conventional-changelog-conventionalcommits@5.0.0
env:
GITHUB_TOKEN: ${{ secrets.CREATE_RELEASE }}
GH_USERNAME: lime-opensource
CI: true