Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ jobs:
- name: Checkout the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Git auth config
run: |
git config --local user.email "[email protected]"
git config --local user.name "cxAST CI"

- name: Get and Format the PR Title
id: get_pr_title
run: |
Expand Down Expand Up @@ -57,6 +52,8 @@ jobs:

- name: Create release from tag
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.bump.outputs.new_version }}
release_name: Release ${{ steps.bump.outputs.new_version }}
Expand Down