Skip to content

ci: first deployment of the jwt package (#446) #326

ci: first deployment of the jwt package (#446)

ci: first deployment of the jwt package (#446) #326

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
id-token: write
contents: read
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
with:
node-version: 24
- name: Build Azion package
run: pnpm run compile
- name: Create Version PR or Publish to NPM
id: changesets
uses: changesets/action@v1
with:
publish: pnpm exec changeset publish
commit: 'chore: version packages'
env:
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
NODE_ENV: 'production'
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}