Bump @sap/cds from 8.5.1 to 8.6.0 (#450) #92
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Release | |
on: | |
push: | |
branches: main | |
workflow_dispatch: | |
inputs: | |
dry-run: | |
description: Dry run | |
required: false | |
default: false | |
type: boolean | |
permissions: | |
contents: write | |
env: | |
INPUTS_DRY_RUN: ${{ github.event.inputs.dry-run }} | |
DRY_RUN_OPTION: ${{ github.event.inputs.dry-run == 'true' && '--dry-run' || '' }} | |
jobs: | |
check-versions: | |
runs-on: ubuntu-latest | |
outputs: | |
do-release: ${{ steps.check-versions.outputs.do-release }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
registry-url: https://registry.npmjs.org/ | |
- name: Check Versions | |
id: check-versions | |
run: | | |
if [ "$GITHUB_EVENT_NAME" == "workflow_dispatch" ]; then | |
echo "Run as workflow_dispatch: run release" | |
echo "do-release=true" >> $GITHUB_OUTPUT | |
exit 0 | |
fi | |
package_name=$(npm pkg get name | tr -d '"') | |
local_version=$(npm pkg get version | tr -d '"') | |
npm_version=$(npm show $package_name version) | |
echo "Local version: $local_version" | |
echo "NPM version: $npm_version" | |
npm install -g semver | |
if semver -r ">${npm_version}" "${local_version}"; then | |
echo "Local version is greater than npm version: run release" | |
echo "do-release=true" >> $GITHUB_OUTPUT | |
else | |
echo "Local version is not greater than npm version: nothing to do." | |
echo "do-release=false" >> $GITHUB_OUTPUT | |
fi | |
publish-npm: | |
runs-on: ubuntu-latest | |
needs: check-versions | |
if: ${{ needs.check-versions.outputs.do-release == 'true' }} | |
environment: npm | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
registry-url: https://registry.npmjs.org/ | |
- name: Run Unit Tests | |
if: ${{ github.event.inputs.dry-run == 'false' }} | |
run: | | |
npm ci | |
npm run test | |
- name: Publish to npm | |
run: npm publish --access public $DRY_RUN_OPTION | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | |
- name: Get Version | |
id: get-version | |
run: | | |
echo "version=$(npm pkg get version | tr -d '"')" >> $GITHUB_OUTPUT | |
- name: Parse CHANGELOG.md | |
id: parse-changelog | |
uses: schwma/[email protected] | |
with: | |
version: '${{ steps.get-version.outputs.version }}' | |
title-regex: '^##\s+\[\d.*$' | |
- name: Create a GitHub release | |
if: ${{ github.event.inputs.dry-run == 'false' }} | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: 'v${{ steps.get-version.outputs.version }}' | |
body: '${{ steps.parse-changelog.outputs.body }}' |