Skip to content

Commit 0c93858

Browse files
committed
ci(release): remove build step from release workflow
1 parent 3fb8dd8 commit 0c93858

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
inputs:
66
bump:
7-
description: 'Bump'
7+
description: 'Bump Type'
88
required: true
99
type: choice
1010
options:
@@ -17,18 +17,19 @@ on:
1717
type: boolean
1818
required: false
1919
dry-run:
20-
description: 'Dry-run'
20+
description: 'Dry Run'
2121
type: boolean
2222
required: false
2323

2424
run-name: >-
2525
Release
2626
${{ inputs.bump && format('[🚀 {0}]', inputs.bump) || format('') }}
2727
${{ inputs.prerelease && format('[🧪 Prerelease]') || format('') }}
28-
${{ inputs.dry-run && format('[🚫 Dry-Run]') || format('') }}
28+
${{ inputs.dry-run && format('[🚫 Dry Run]') || format('') }}
2929
3030
permissions:
3131
contents: write
32+
packages: read
3233

3334
concurrency: release
3435

@@ -54,9 +55,6 @@ jobs:
5455
with:
5556
token: ${{ secrets.GITHUB_TOKEN }}
5657

57-
- name: Build
58-
run: pnpm build
59-
6058
- name: Git config
6159
run: |
6260
git config user.name "github-actions[bot]"

0 commit comments

Comments
 (0)