Skip to content

chore(deps): bump tinymce from 5.10.7 to 5.10.8 in /client #498

chore(deps): bump tinymce from 5.10.7 to 5.10.8 in /client

chore(deps): bump tinymce from 5.10.7 to 5.10.8 in /client #498

name: Release
on:
workflow_dispatch:
push:
branches:
- main
jobs:
release:
timeout-minutes: 5
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js 18.16.0
uses: actions/setup-node@v2
with:
node-version: 18.16.0
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: node_modules
key: npm-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run semantic-release