We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8829441 + 96265ce commit 0d44d24Copy full SHA for 0d44d24
.github/workflows/homebrewpublish.yaml
@@ -13,8 +13,19 @@ jobs:
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v2
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v1
18
+ with:
19
+ python-version: '3.x'
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install -U commitizen
23
+ - name: Set Project version env variable
24
25
+ echo "project_version=$(cz version --project)" >> $GITHUB_ENV
26
- name: Update Homebrew formula
27
uses: dawidd6/action-homebrew-bump-formula@v3
28
with:
29
token: ${{secrets.PERSONAL_ACCESS_TOKEN}}
30
formula: commitizen
31
+ tag: v${{ env.project_version }}
0 commit comments