Skip to content

chore: release v0.1.4 #37

chore: release v0.1.4

chore: release v0.1.4 #37

Workflow file for this run

name: release
on:
push:
branches:
- main
permissions: {}
jobs:
release:
runs-on: ubuntu-latest
if: ${{ false && github.repository_owner == 'nuxt' && github.event_name == 'push' }}
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- run: corepack enable
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20
registry-url: 'https://registry.npmjs.org/'
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Prepare build environment
run: pnpm dev:prepare
- name: nightly release
run: pnpm changelogen --canary nightly --publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
# TODO: re-enable when repo is made public
NPM_CONFIG_PROVENANCE: false