Release #32
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: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
release-type: | |
description: 'Type of release (major, minor, patch, alpha)' | |
required: true | |
default: alpha | |
type: choice | |
options: | |
- major | |
- minor | |
- patch | |
- alpha | |
jobs: | |
validate: | |
runs-on: ubuntu-20.04 | |
name: Validate | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Setup Biome CLI | |
uses: biomejs/setup-biome@v2 | |
with: | |
version: latest | |
- name: Run Biome | |
run: biome ci . | |
- name: Install dependencies | |
run: pnpm install | |
- name: Generate output files | |
env: | |
SERVER: https://api.paradym.id/openapi.json | |
run: pnpm generate | |
- name: Build packages | |
run: pnpm build | |
release: | |
runs-on: ubuntu-20.04 | |
name: Release | |
needs: [validate] | |
# Only run on workflow dispatch to main branch | |
if: github.ref == 'refs/heads/main' && github.repository == 'animo/paradym-sdk-ts' && github.event_name == 'workflow_dispatch' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: git config | |
run: | | |
git config user.name "@Animo-bot" | |
git config user.email "[email protected]" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Set NPM config | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN }}" >> .npmrc | |
echo "registry=https://registry.npmjs.org/" >> .npmrc | |
echo "always-auth=true" >> .npmrc | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build the library | |
run: pnpm build | |
- name: Publish | |
id: publish | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
if [ ${{ inputs.release-type }} == 'alpha' ]; then | |
pnpm release prerelease --yes | |
else | |
pnpm release ${{ inputs.release-type }} --force-publish --no-private --yes | |
fi |