Skip to content

Merge branch 'main' of github.com:arnoson/kirby-template-sugar #20

Merge branch 'main' of github.com:arnoson/kirby-template-sugar

Merge branch 'main' of github.com:arnoson/kirby-template-sugar #20

Workflow file for this run

name: Release
permissions:
contents: write
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
registry-url: 'https://registry.npmjs.org'
- name: Install
run: pnpm i
- name: Build
run: pnpm build
- name: Publish to NPM
run: pnpm -r --filter=./packages/* publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}