Skip to content

v0.2.0

v0.2.0 #19

Workflow file for this run

name: draft-release
on:
push:
tags: ['v*']
jobs:
draft-github-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: ${{ vars.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: install and build
run: pnpm install --frozen-lockfile
- uses: sap/cloud-sdk-js/.github/actions/merge-changelogs@merge-changelogs
name: Merge changelogs
id: merge-changelogs
- uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
draft: true
# body: 'SAP Cloud SDK for AI Beta release'
body: ${{ steps.merge-changelogs.outputs.changelog }}