Skip to content

chore: renamed all templates files to be able to load them in angular… #54

chore: renamed all templates files to be able to load them in angular…

chore: renamed all templates files to be able to load them in angular… #54

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Release
on:
push:
branches:
- master
- beta
jobs:
release:
name: Check release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- name: Install modules & build the Library
run: |
pnpm install
pnpm build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17
branches: |
[
'+([0-9])?(.{+([0-9]),x}).x',
'master',
{name: 'beta', prerelease: true},
]
extra_plugins: |
@semantic-release/changelog@^5.0.1
@semantic-release/git@^9.0.0
@semantic-release/github@^7.2.3
@semantic-release/npm@^7.1.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}