Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit daf098e

Browse files
committed
ci: cleanup & fix repo
1 parent 594cb14 commit daf098e

File tree

8 files changed

+13
-181
lines changed

8 files changed

+13
-181
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,3 @@ jobs:
1414
test:
1515
if: ${{ ! startsWith(github.event.head_commit.message, 'release:') && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) }}
1616
uses: ./.github/workflows/test.yml
17-
18-
continuous-release:
19-
if: github.repository == 'vuejs/core'
20-
runs-on: ubuntu-latest
21-
steps:
22-
- name: Checkout
23-
uses: actions/checkout@v4
24-
25-
- name: Install pnpm
26-
uses: pnpm/action-setup@v4
27-
28-
- name: Install Node.js
29-
uses: actions/setup-node@v4
30-
with:
31-
node-version-file: '.node-version'
32-
registry-url: 'https://registry.npmjs.org'
33-
cache: 'pnpm'
34-
35-
- name: Install deps
36-
run: pnpm install
37-
38-
- name: Build
39-
run: pnpm build --withTypes
40-
41-
- name: Release
42-
run: pnpx pkg-pr-new publish --compact --pnpm './packages/*'

.github/workflows/close-cant-reproduce-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
close-issues:
12-
if: github.repository == 'vuejs/core'
12+
if: github.repository == 'vuejs/core-vapor'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: can't reproduce

.github/workflows/ecosystem-ci-trigger.yml

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

.github/workflows/lock-closed-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
action:
12-
if: github.repository == 'vuejs/core'
12+
if: github.repository == 'vuejs/core-vapor'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: dessant/lock-threads@v5

.github/workflows/release.yml

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

.github/workflows/size-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818

1919
jobs:
2020
upload:
21-
if: github.repository == 'vuejs/core'
21+
if: github.repository == 'vuejs/core-vapor'
2222
runs-on: ubuntu-latest
2323

2424
steps:

.github/workflows/size-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
size-report:
1919
runs-on: ubuntu-latest
2020
if: >
21-
github.repository == 'vuejs/core' &&
21+
github.repository == 'vuejs/core-vapor' &&
2222
github.event.workflow_run.event == 'pull_request' &&
2323
github.event.workflow_run.conclusion == 'success'
2424
steps:

.github/workflows/test.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,19 @@ jobs:
5454
- name: Run type declaration tests
5555
run: pnpm run test-dts
5656

57-
release:
57+
continuous-release:
58+
if: github.repository == 'vuejs/core-vapor'
5859
runs-on: ubuntu-latest
5960
needs: [unit-test, lint-and-test-dts]
6061
permissions:
6162
contents: read
6263
id-token: write
6364
steps:
64-
- uses: actions/checkout@v4
65+
- name: Checkout
66+
uses: actions/checkout@v4
6567

6668
- name: Install pnpm
67-
uses: pnpm/action-setup@v4.0.0
69+
uses: pnpm/action-setup@v4
6870

6971
- name: Install Node.js
7072
uses: actions/setup-node@v4
@@ -73,10 +75,11 @@ jobs:
7375
registry-url: 'https://registry.npmjs.org'
7476
cache: 'pnpm'
7577

76-
- run: pnpm install
78+
- name: Install deps
79+
run: pnpm install
7780

7881
- name: Build
7982
run: pnpm build --withTypes
8083

81-
- name: Publish
82-
run: pnpm dlx pkg-pr-new@0.0 publish './packages/*' --template './playground' --pnpm
84+
- name: Release
85+
run: pnpx pkg-pr-new publish --pnpm './packages/*' --template './playground'

0 commit comments

Comments
 (0)