Skip to content

chore(deps): bump mongoose from 7.6.4 to 8.9.5 #355

chore(deps): bump mongoose from 7.6.4 to 8.9.5

chore(deps): bump mongoose from 7.6.4 to 8.9.5 #355

Workflow file for this run

name: release
# Run the workflow when a Pull Request is opened or when changes are pushed to master
on:
pull_request:
push:
branches: [main]
#paths:
# - "common/**"
jobs:
release:
# Only release on push to master
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
#needs: [test]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install
run: yarn install --immutable
- name: Build
run: yarn workspace common build
- name: Release
id: release
run: yarn exec multi-semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCKER_REGISTRY_USER: ${{ github. actor }}