Skip to content

Commit

Permalink
deactivate unused workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fabridamicelli committed Apr 25, 2024
1 parent 373d8ed commit 109d83a
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: Bump version and release

on:
push:
tags:
- "*"

jobs:
bump-version:
runs-on: ubuntu-latest
name: "Bump version and create changelog with commitizen"
steps:
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 0
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
- name: Create bump and changelog
uses: commitizen-tools/commitizen-action@master
with:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
changelog_increment_filename: body.md
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: "body.md"
tag_name: ${{ env.REVISION }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# name: Bump version and release
#
# on:
# push:
# tags:
# - "*"
#
# jobs:
# bump-version:
# runs-on: ubuntu-latest
# name: "Bump version and create changelog with commitizen"
# steps:
# - name: Check out
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
# - name: Create bump and changelog
# uses: commitizen-tools/commitizen-action@master
# with:
# github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
# changelog_increment_filename: body.md
# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# body_path: "body.md"
# tag_name: ${{ env.REVISION }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 109d83a

Please sign in to comment.