Skip to content

feat: VueJS + NuxtJS support (#199) #159

feat: VueJS + NuxtJS support (#199)

feat: VueJS + NuxtJS support (#199) #159

name: Release - Canary
on:
pull_request:
types: [labeled]
branches:
- main
jobs:
release:
if: contains(github.event.pull_request.labels.*.name, 'release canary')
timeout-minutes: 10
name: Build & Publish a canary release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup
uses: ./tooling/gh-actions/setup
- name: Check packages for common errors
run: bun turbo --filter "./packages/*" build
- name: Bump version to canary
run: node .github/canary-version.js
- name: Authenticate to npm and publish
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
for dir in packages/*/; do
npm publish "$dir" --access public --tag canary
done
- name: Create a new comment notifying of the new canary version
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
// Get package version
const fs = require("fs");
let text = 'A new canary is available for testing. You can install this latest build in your project with:\n\n```sh\n'
const pkgJsonPaths = fs
.readdirSync("packages")
.filter((dir) => dir !== "config")
.map((dir) => `packages/${dir}/package.json`);
for (const pkgJsonPath of pkgJsonPaths) {
const packageJson = JSON.parse(fs.readFileSync(pkgJsonPath));
const version = packageJson.version;
text += `pnpm add ${packageJson.name}@${version}\n`
}
text += '```\n\n'
// Create a comment on the PR with the new canary version
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: text,
})
// Remove the label
github.rest.issues.removeLabel({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
name: 'release canary',
});