Skip to content

docs(kiro): 📝 remove NestedStack, add Route53MainStack best prac… #9

docs(kiro): 📝 remove NestedStack, add Route53MainStack best prac…

docs(kiro): 📝 remove NestedStack, add Route53MainStack best prac… #9

Workflow file for this run

name: Release
on:
push:
branches: [main]
permissions:
contents: read
jobs:
ci:
uses: ./.github/workflows/ci.yml
release:
name: Release
runs-on: ubuntu-latest
needs: ci
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
packages: write
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- run: |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: npm
registry-url: 'https://npm.pkg.github.com'
- run: npm ci
- run: npm run build
- name: Release
run: npx bonvoy shipit
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}