Skip to content

fix changelog generation #21

fix changelog generation

fix changelog generation #21

name: Publish Obol-SDK to NPM
on:
push:
branches: [main]
jobs:
build:
if: github.event.pull_request.merged == true && github.event.pull_request.head.label == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false # Required to make GitHub forget this checkout for the next step
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
scope: '@obolnetwork'
- name: Configure git
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@main
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v1
############# TAG RELEASE ##############
- name: "Push tag v${{ steps.package-version.outputs.current-version }}"
uses: rickstaa/action-create-tag@v1
id: tag_version
with:
tag: "v${{ steps.package-version.outputs.current-version }}"
############# GITHUB RELEASE ##############
- name: "Create a GitHub release v${{ steps.package-version.outputs.current-version }}"
uses: ncipollo/release-action@v1
with:
tag: "v${{ steps.package-version.outputs.current-version }}"
name: "Release v${{ steps.package-version.outputs.current-version }}"
body: |
## Release notes:
${{ steps.extract-release-notes.outputs.release_notes }}
############# NPM RELEASE ##############
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run generate-typedoc
- run: yarn run ds:release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
HUSKY: 0