Skip to content

Commit 70d7333

Browse files
authored
chore: 1.0.0-alpha.1 (#111)
1 parent 9676f7c commit 70d7333

File tree

2 files changed

+43
-3
lines changed

2 files changed

+43
-3
lines changed

.github/workflows/release.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
# Remove default permissions of GITHUB_TOKEN for security
9+
# https://docs.github.com/en/actions/tutorials/authenticate-with-github_token
10+
permissions: {}
11+
12+
jobs:
13+
release:
14+
concurrency:
15+
group: release
16+
permissions:
17+
contents: write
18+
id-token: write
19+
runs-on: ubuntu-latest
20+
timeout-minutes: 20
21+
steps:
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
23+
with:
24+
fetch-depth: 0
25+
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
26+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
27+
with:
28+
node-version: current
29+
registry-url: "https://registry.npmjs.org/"
30+
package-manager-cache: false
31+
32+
- name: Install dependencies
33+
run: pnpm install
34+
35+
- name: Build (stub)
36+
run: pnpm dev:prepare
37+
38+
- name: Publish
39+
run: pnpm publish --access public --no-git-checks

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "@nuxt/hints",
3-
"version": "1.0.0",
4-
"description": "Nuxt module that shows hints for aspects of your application such as Performance, A11Y, Security, and more!",
5-
"repository": "nuxt/hints",
3+
"version": "1.0.0-alpha.1",
4+
"description": "Nuxt module that shows hints for aspects of your application such as Performance, Security, and more!",
5+
"repository": "https://github.com/nuxt/hints",
6+
"homepage": "https://github.com/nuxt/hints",
67
"license": "MIT",
78
"type": "module",
89
"exports": {

0 commit comments

Comments
 (0)