-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from trendmicro/fix/workflow
Fixed release workflow
- Loading branch information
Showing
1 changed file
with
13 additions
and
11 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 |
---|---|---|
|
@@ -17,6 +17,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: releases/${{ github.event.inputs.version }} | ||
ssh-key: ${{ secrets.USER_SSH_KEY }} | ||
fetch-depth: 0 | ||
- name: Set up Python 3.7 | ||
|
@@ -25,30 +26,31 @@ jobs: | |
python-version: "3.7" | ||
- name: Set up Git | ||
run: | | ||
echo "${{ secrets.USER_GPG_KEY }}" | gpg --import | ||
git config --add user.name "${{ secrets.USER_NAME }}" | ||
git config --add user.email "${{ secrets.USER_MAIL }}" | ||
git config --add user.signingkey "${{ secrets.USER_GPG_ID }}" | ||
git config commit.gpgsign true | ||
- name: Run build | ||
run: | | ||
pip install --upgrade hatch | ||
hatch version ${{ env.VERSION }} | ||
hatch --verbose build | ||
- name: Publish package to PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
verbose: true | ||
- name: Merge release branch | ||
run: | | ||
git checkout ${{ env.BRANCH }} | ||
git commit -am "Release ${{ env.VERSION }}: increment version" | ||
git checkout main | ||
git merge --no-ff ${{ env.BRANCH }} | ||
git tag -a ${{ env.VERSION }} -m "Release ${{ env.VERSION }}" | ||
git tag -a v${{ env.VERSION }} -m "Release ${{ env.VERSION }}" | ||
git push --atomic origin main refs/tags/v${{ env.VERSION }} | ||
# Try to merge back release branch | ||
git checkout ${{ env.BRANCH }} | ||
git merge --ff-only main | ||
git push --atomic origin main ${{ env.BRANCH }} refs/tags/${{ env.VERSION }} | ||
# Try to merge back release branch | ||
git checkout develop | ||
git merge --no-ff ${{ env.BRANCH }} | ||
git branch -d ${{ env.BRANCH }} | ||
git push origin develop :${{ env.BRANCH }} | ||
git push origin develop :${{ env.BRANCH }} | ||
- name: Publish package to PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
verbose: true |