Skip to content

Commit

Permalink
workflow: fix release workflow [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Aug 6, 2024
1 parent 4e5cafe commit 244545c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Create Release
name: Create GH Release for Tag

permissions: {}
jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Package
name: Release

on:
workflow_dispatch:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
git config user.email "<[email protected]>"
- name: Release
run: pnpm release ${{ inputs.bump != 'custom' && inputs.bump || inputs.custom_version }} --skip-prompts
run: pnpm release ${{ inputs.bump != 'custom' && inputs.bump || inputs.custom_version }} --skipPrompts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down

0 comments on commit 244545c

Please sign in to comment.