-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding GPG signing for create release
- Loading branch information
1 parent
6d5566e
commit 1f22c01
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,8 @@ jobs: | |
|
||
- name: Create release branch | ||
run: git checkout -b release/${{ github.event.inputs.versionName }} | ||
- name: Update version file | ||
|
||
- name: Update version and push | ||
id: make-commit | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.CODECOV_RELEASE_PAT }} | ||
|
@@ -40,14 +41,14 @@ jobs: | |
git add setup.py | ||
git commit -S --message "Prepare release ${{ github.event.inputs.versionName }}" | ||
echo "commit=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" | ||
- name: Push release branch | ||
run: git push origin release/${{ github.event.inputs.versionName }} | ||
git push origin release/${{ github.event.inputs.versionName }} | ||
- name: Create pull request into main | ||
uses: thomaseizinger/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
head: release/${{ github.event.inputs.versionName }} | ||
base: ${{ inputs.mainBranch }} | ||
base: main | ||
title: Release ${{ github.event.inputs.versionName }} | ||
reviewers: ${{ github.event.issue.user.login }} | ||
body: | | ||
|