This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
chore(deps-dev): bump typescript from 5.6.2 to 5.6.3 #32
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
name: Create and Publish Release | |
on: | |
push: | |
branches: | |
- main | |
- '*[0-9].*[0-9].x' | |
- '*[0-9].x.x' | |
- dev | |
- alpha | |
- beta | |
jobs: | |
semantic-release: | |
name: Run Semantic Release | |
runs-on: ubuntu-latest | |
outputs: | |
new_release_published: ${{ steps.semantic.outputs.new_release_published }} | |
new_release_version: ${{ steps.semantic.outputs.new_release_version }} | |
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: git config --global user.email "[email protected]" | |
- run: git config --global user.name "Lime Technologies OSS" | |
- 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/[email protected] | |
@semantic-release/[email protected] | |
[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.CREATE_RELEASE }} | |
GH_USERNAME: lime-opensource | |
GH_TOKEN: ${{ secrets.CREATE_RELEASE }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN_ads }} | |
CI: true |