This commit is contained in:
Aasim Khan 2024-08-10 18:20:43 -07:00
Родитель 4dba0a1511
Коммит 3f03dff6ba
2 изменённых файлов: 11 добавлений и 9 удалений

18
.github/workflows/cd.yml поставляемый
Просмотреть файл

@ -18,6 +18,8 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
@ -26,6 +28,14 @@ jobs:
- name: Install Dependencies
run: npm install
- name: Generate release notes
if: env.skip_release == 'false'
run: |
GIT_LOG=$(git log --pretty=format:"%h - %s (%an)" "HEAD^..HEAD")
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${GIT_LOG}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Check if tag is present
id: tag_check
@ -71,14 +81,6 @@ jobs:
echo "No changes to push"
echo "skip_release=true" >> $GITHUB_ENV
fi
- name: Generate release notes
if: env.skip_release == 'false'
run: |
GIT_LOG=$(git log --pretty=format:"%h - %s (%an)" "HEAD^..HEAD")
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${GIT_LOG}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Printing release notes
if: env.skip_release == 'false'

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "azdataGraph",
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
"version": "0.0.65",
"version": "0.0.66",
"homepage": "https://github.com/microsoft/azdataGraph",
"author": "Microsoft",
"license": "Apache-2.0",