Skip to content

Commit e49434e

Browse files
committed
chore: add nightly releases
1 parent 399e0c2 commit e49434e

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

.github/workflows/nightly.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Nightly
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
tags:
9+
- '!**'
10+
11+
permissions:
12+
contents: read # access to check out code and install dependencies
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Install pnpm
22+
uses: pnpm/action-setup@v4
23+
24+
- name: Use Node.js LTS
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: lts/*
28+
registry-url: https://registry.npmjs.org/
29+
cache: pnpm
30+
31+
- run: pnpm i
32+
33+
- name: Build
34+
run: pnpm run build
35+
36+
- name: Publish
37+
run: pnpm dlx pkg-pr-new publish

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## v0.11.8...main
4+
5+
[compare changes](https://github.com/nuxt/scripts/compare/v0.11.8...main)
6+
7+
### 🚀 Enhancements
8+
9+
- **rybbit:** Add new tracking configuration options ([#471](https://github.com/nuxt/scripts/pull/471))
10+
11+
### 🩹 Fixes
12+
13+
- **meta-pixel:** Refine fbq type definitions ([#464](https://github.com/nuxt/scripts/pull/464))
14+
- Support cdnURL for bundled scripts ([#472](https://github.com/nuxt/scripts/pull/472))
15+
16+
### 📖 Documentation
17+
18+
- Correct contents of XPixelAPI ([#465](https://github.com/nuxt/scripts/pull/465))
19+
20+
### 🏡 Chore
21+
22+
- Bump deps & changelog ([19c74b2](https://github.com/nuxt/scripts/commit/19c74b2))
23+
- Bump lock ([fb2d62b](https://github.com/nuxt/scripts/commit/fb2d62b))
24+
- Remove `bridge: false` from module compatibility ([#470](https://github.com/nuxt/scripts/pull/470))
25+
- Fix tests ([e14cd1b](https://github.com/nuxt/scripts/commit/e14cd1b))
26+
- Fix tests ([2b7002c](https://github.com/nuxt/scripts/commit/2b7002c))
27+
- Fix tests ([9f486ae](https://github.com/nuxt/scripts/commit/9f486ae))
28+
- Type issues ([243d8d6](https://github.com/nuxt/scripts/commit/243d8d6))
29+
- Sync lock ([0198225](https://github.com/nuxt/scripts/commit/0198225))
30+
31+
### ❤️ Contributors
32+
33+
- Harlan Wilton ([@harlan-zw](https://github.com/harlan-zw))
34+
35+
- Daniel Roe ([@danielroe](https://github.com/danielroe))
36+
- Nagaakihoshi <[email protected]>
37+
- Kohei Tsukiyama ([@tsukiyama-3](https://github.com/tsukiyama-3))
38+
339
## v0.11.7...main
440

541
[compare changes](https://github.com/nuxt/scripts/compare/v0.11.7...main)

0 commit comments

Comments
 (0)