[Release] v1.0.17 #50
Workflow file for this run
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
name: Publish Obol-SDK to NPM | |
on: | |
pull_request: | |
types: | |
- closed | |
workflow_dispatch: | |
jobs: | |
build: | |
if: (github.event.pull_request.merged == true && github.event.pull_request.head.label.name == 'release') || github.event_name == 'workflow_dispatch' | |
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 npm:publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
HUSKY: 0 |