We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd1e75a commit cdd31b2Copy full SHA for cdd31b2
2 files changed
.github/workflows/release-cli.yml
@@ -5,6 +5,10 @@ on:
5
branches:
6
- cli
7
8
+permissions:
9
+ contents: write
10
+ pull-requests: write
11
+
12
jobs:
13
release:
14
runs-on: ubuntu-latest
@@ -26,6 +30,9 @@ jobs:
26
30
uses: changesets/action@v1
27
31
with:
28
32
publish: npm run release
33
+ setupGitUser: true
34
+ createGithubReleases: true
35
+ commitMode: git-cli
29
36
env:
37
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
packages/cli/package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "axionjs-ui",
3
"version": "0.0.1",
4
- "description": "Add components directly in to your project",
+ "description": "AxionJS CLI for managing AxionJS UI components and configurations.",
"bin": {
"axionjs": "src/index.js"
},
0 commit comments