Skip to content

Commit 9b9d8e8

Browse files
authored
build: Quick fixes to release workflow (#35)
Fix pnpm action by adding version, and swap to using changeset pre-release utility
1 parent 256f916 commit 9b9d8e8

File tree

8 files changed

+17
-12
lines changed

8 files changed

+17
-12
lines changed

.changeset/pre.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"mode": "pre",
3+
"tag": "alpha",
4+
"initialVersions": {
5+
"@codecov/bundler-plugin-core": "0.0.1",
6+
"@codecov/rollup-plugin": "0.0.1",
7+
"@codecov/vite-plugin": "0.0.1",
8+
"@codecov/webpack-plugin": "0.0.1"
9+
},
10+
"changesets": []
11+
}

.changeset/sweet-lemons-add.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/workflows/prepare-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- name: Setup pnpm & install dependencies
2222
uses: pnpm/action-setup@v2
2323
with:
24+
version: 8
2425
run_install: true
2526

2627
- name: Create Release Pull Request

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- name: Setup pnpm & install dependencies
3131
uses: pnpm/action-setup@v2
3232
with:
33+
version: 8
3334
run_install: true
3435

3536
- name: Publish to NPM

packages/bundler-plugin-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/bundler-plugin-core",
3-
"version": "0.0.1-alpha",
3+
"version": "0.0.1",
44
"description": "Official Codecov Bundler Plugin Core",
55
"author": "Codecov",
66
"license": "MIT",

packages/rollup-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/rollup-plugin",
3-
"version": "0.0.1-alpha",
3+
"version": "0.0.1",
44
"description": "Official Codecov Rollup plugin",
55
"author": "Codecov",
66
"license": "MIT",

packages/vite-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/vite-plugin",
3-
"version": "0.0.1-alpha",
3+
"version": "0.0.1",
44
"description": "Official Codecov Vite plugin",
55
"author": "Codecov",
66
"license": "MIT",

packages/webpack-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/webpack-plugin",
3-
"version": "0.0.1-alpha",
3+
"version": "0.0.1",
44
"description": "Official Codecov Webpack plugin",
55
"author": "Codecov",
66
"license": "MIT",

0 commit comments

Comments
 (0)