|
66 | 66 |
|
67 | 67 | | Name | Description | Default |
|
68 | 68 | | ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------- |
|
69 |
| -| `github_token` | Token for the repo. Can be passed in using `${{ secrets.GITHUB_TOKEN }}`. Required if `use_ssh: false` | - | |
70 |
| -| `use_ssh` | Set to true if ssh-key has been configured for the `actions/checkout` | `false` | |
| 69 | +| `github_token` | Token for the repo. Can be passed in using `${{ secrets.GITHUB_TOKEN }}`. Required if `push: true` | - | |
71 | 70 | | `dry_run` | Run without creating commit, output to stdout | false |
|
72 | 71 | | `repository` | Repository name to push. Default or empty value represents current github repository | current one |
|
73 | 72 | | `branch` | Destination branch to push changes | Same as the one executing the action by default |
|
@@ -119,11 +118,49 @@ jobs:
|
119 | 118 | uses: actions/checkout@v3
|
120 | 119 | with:
|
121 | 120 | fetch-depth: 0
|
122 |
| - ssh-key: '${{ secrets.COMMIT_KEY }}' |
| 121 | + ssh-key: "${{ secrets.COMMIT_KEY }}" |
123 | 122 | - name: Create bump and changelog
|
124 | 123 | uses: commitizen-tools/commitizen-action@master
|
125 | 124 | with:
|
126 |
| - use_ssh: true |
| 125 | + push: false |
| 126 | + - name: Push using ssh |
| 127 | + run: | |
| 128 | + git push origin main --tags |
| 129 | +``` |
| 130 | + |
| 131 | +## Creating a Github release |
| 132 | + |
| 133 | +```yaml |
| 134 | +name: Bump version |
| 135 | +
|
| 136 | +on: |
| 137 | + push: |
| 138 | + branches: |
| 139 | + - main |
| 140 | +
|
| 141 | +jobs: |
| 142 | + bump-version: |
| 143 | + if: "!startsWith(github.event.head_commit.message, 'bump:')" |
| 144 | + runs-on: ubuntu-latest |
| 145 | + name: "Bump version and create changelog with commitizen" |
| 146 | + steps: |
| 147 | + - name: Check out |
| 148 | + uses: actions/checkout@v3 |
| 149 | + with: |
| 150 | + fetch-depth: 0 |
| 151 | + token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}" |
| 152 | + - name: Create bump and changelog |
| 153 | + uses: commitizen-tools/commitizen-action@master |
| 154 | + with: |
| 155 | + github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |
| 156 | + changelog_increment_filename: body.md |
| 157 | + - name: Release |
| 158 | + uses: softprops/action-gh-release@v1 |
| 159 | + with: |
| 160 | + body_path: "body.md" |
| 161 | + tag_name: ${{ env.REVISION }} |
| 162 | + env: |
| 163 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
127 | 164 | ```
|
128 | 165 |
|
129 | 166 | ## Troubleshooting
|
|
0 commit comments