Skip to content

Commit

Permalink
Update changeset publish command options
Browse files Browse the repository at this point in the history
  • Loading branch information
kamiazya committed Feb 1, 2024
1 parent cf92b28 commit 482ba9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-snapshot-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
await exec.exec('pnpm', ['exec', 'changeset', 'version', '--snapshot', 'pr' + context.issue.number])
let stdout = '';
await exec.exec('pnpm', ['exec', 'changeset', 'publish', '--snapshot', 'pr' + context.issue.number], {
await exec.exec('pnpm', ['exec', 'changeset', 'publish', '--snapshot', 'pr' + context.issue.number, '--no-git-tag', '--tag', 'develop'], {
listeners: {
stdout: (data) => {
stdout += data.toString();
Expand Down

0 comments on commit 482ba9e

Please sign in to comment.