Skip to content

Commit 608673f

Browse files
committed
fix: rename create-release-workflow to release-workflow
1 parent 7b56a76 commit 608673f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/categories/js/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { husky } from './husky';
55
import { lintStaged } from './lint-staged';
66
import { prettier } from './prettier';
77
import { standardVersion } from './standard-verstion';
8-
import { createReleaseWorflow } from './create-release-worflow';
8+
import { releaseWorkflow } from './release-worflow';
99

1010
// order have matter
1111
const options = {
@@ -15,7 +15,7 @@ const options = {
1515
standardVersion,
1616
eslint,
1717
lintStaged,
18-
createReleaseWorflow,
18+
releaseWorkflow,
1919
};
2020

2121
export default {

src/categories/js/create-release-worflow.ts src/categories/js/release-worflow.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const [getConfig] = jsCategoryState.useConfigState({
3535
default: defaultConfig,
3636
});
3737

38-
export const createReleaseWorflow = async () => {
38+
export const releaseWorkflow = async () => {
3939
const { filename, content } = getConfig();
4040

4141
await addGithubWorkflow(filename, content);

0 commit comments

Comments
 (0)