Skip to content

spell correction for teamListEndpoint (#35) #31

spell correction for teamListEndpoint (#35)

spell correction for teamListEndpoint (#35) #31

Workflow file for this run

name: 'Release'
on:
push:
branches:
- main
paths-ignore:
- 'CHANGELOG.md'
jobs:
code-validation:
uses: ./.github/workflows/code_validation.yml
release:
needs: [code-validation]
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write
env:
HUSKY: 0
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build Typescript Definitions
run: yarn tsc
- name: Build
run: yarn build
- name: Bump and Release
env:
GITHUB_TOKEN: ${{ secrets.TAGGING_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release