Skip to content

feat: add nitro preset (#436) #320

feat: add nitro preset (#436)

feat: add nitro preset (#436) #320

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'