fix: streamline build process by executing PyInstaller from project r… #20
Workflow file for this run
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
name: Create Tag and Release | |
on: | |
pull_request: | |
types: [closed, synchronize] | |
branches: | |
- main | |
- 1.2.0-release-2 | |
concurrency: | |
group: create-tag-and-release-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Job 1: Validate the PR and extract version | |
validate_and_tag: | |
# if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.validate_title.outputs.version }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Validate branch name and extract version | |
id: validate_title | |
run: | | |
branch_name="${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" | |
echo "Branch name: $branch_name" | |
echo '1' $GITHUB_REF | |
echo '2' $GITHUB_REF | |
echo '3' $GITHUB_REF_NAME | |
echo '4' $GITHUB_HEAD_REF | |
echo '5' $GITHUB_BASE_REF | |
if [[ "$branch_name" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9-]+)?$ ]]; then | |
version=$(echo "$branch_name" | grep -oE '^v[0-9]+\.[0-9]+\.[0-9]+') | |
echo "version=$version" >> "$GITHUB_OUTPUT" | |
echo "Matched version: $version" | |
else | |
echo "Branch name does not match the required format (vX.X.X or vX.X.X-suffix)." | |
exit 1 # Exit with failure | |
fi | |
shell: bash | |
- name: Create a tag | |
if: ${{ steps.validate_title.outputs.version != '' }} | |
run: | | |
version=${{ steps.validate_title.outputs.version }} | |
# 检查本地是否存在该 Tag | |
tag_exists=$(git tag -l "$version") | |
if [ -z "$tag_exists" ]; then | |
# 本地不存在该 Tag,创建 Tag | |
git tag "$version" | |
# 检查远程是否存在该 Tag | |
remote_tag_exists=$(git ls-remote --tags origin | grep "refs/tags/$version" || true) | |
if [ -z "$remote_tag_exists" ]; then | |
# 如果远程也不存在,推送 Tag | |
git push origin "$version" | |
echo "Tag $version created and pushed successfully." | |
else | |
echo "Tag $version already exists in remote. Skipping push." | |
fi | |
else | |
echo "Tag $version already exists locally. Skipping tag creation and push." | |
fi | |
shell: bash | |
# Job 2: Create release | |
create_release: | |
needs: validate_and_tag | |
if: ${{ needs.validate_and_tag.outputs.version != '' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Create GitHub release | |
- name: Create GitHub release | |
id: create_release_step | |
uses: actions/create-release@v1 | |
with: | |
tag_name: ${{ needs.validate_and_tag.outputs.version }} | |
release_name: Release ${{ needs.validate_and_tag.outputs.version }} | |
body: | | |
Automatically created release for version ${{ needs.validate_and_tag.outputs.version }}. | |
### PR Description: | |
${{ github.event.pull_request.body }} | |
draft: false | |
prerelease: false | |
# Upload source zip file to release | |
- name: Upload source zip file to release | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ steps.create_release_step.outputs.upload_url }} | |
asset_path: ./sub_adjust-${{ needs.validate_and_tag.outputs.version }}-source.zip | |
asset_name: sub_adjust-${{ needs.validate_and_tag.outputs.version }}-source.zip | |
asset_content_type: application/zip |