Skip to content

feat: Capture exceptions from the API and return as part of response. #9

feat: Capture exceptions from the API and return as part of response.

feat: Capture exceptions from the API and return as part of response. #9

Workflow file for this run

on:
push:
branches:
- release/*
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 999
fetch-tags: true
submodules: true
ssh-key: ${{ secrets.ACCESS_KEY }}
- name: Release Notes
run: |
git log --pretty=format:'%d %s' ${GITHUB_REF} | perl -pe 's| \(.*tag: (\d+.\d+.\d+(-preview\d{3})?)(, .*?)*\)|\n## \1\n|g' > RELEASE_NOTES.md
- name: Build
run: ./build.sh --target Publish --publish --nuget --token ${{ secrets.PUBLIC_NUGET_APIKEY }}