chore: remove version update steps from GitHub Actions workflow; bump… #1
This file contains hidden or 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: Version Management & Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'Cargo.toml' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| check-version: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.extract-version.outputs.version }} | |
| new-tag: ${{ steps.check-tag.outputs.new-tag }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Extract version from Cargo.toml | |
| id: extract-version | |
| run: | | |
| VERSION=$(grep '^version' Cargo.toml | head -1 | sed 's/.*"\(.*\)".*/\1/') | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| echo "Extracted version: $VERSION" | |
| - name: Check if tag exists | |
| id: check-tag | |
| run: | | |
| VERSION=${{ steps.extract-version.outputs.version }} | |
| TAG_NAME="v${VERSION}" | |
| if git rev-parse "$TAG_NAME" >/dev/null 2>&1; then | |
| echo "Tag $TAG_NAME already exists" | |
| echo "new-tag=false" >> $GITHUB_OUTPUT | |
| else | |
| echo "New tag will be created: $TAG_NAME" | |
| echo "new-tag=true" >> $GITHUB_OUTPUT | |
| fi | |
| create-release: | |
| needs: check-version | |
| if: needs.check-version.outputs.new-tag == 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Create Git tag | |
| run: | | |
| VERSION=${{ needs.check-version.outputs.version }} | |
| TAG_NAME="v${VERSION}" | |
| git config user.name "GitHub Actions" | |
| git config user.email "actions@github.com" | |
| git tag -a "$TAG_NAME" -m "Release version $VERSION" | |
| git push origin "$TAG_NAME" | |
| - name: Create GitHub Release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: v${{ needs.check-version.outputs.version }} | |
| release_name: Release v${{ needs.check-version.outputs.version }} | |
| body: | | |
| # PHP TOON Extension v${{ needs.check-version.outputs.version }} | |
| ## Release Date | |
| ${{ github.event.head_commit.timestamp }} | |
| ## Key Features | |
| - ✅ Production Ready | |
| - ✅ All 29 Tests Pass (100%) | |
| - ✅ Performance Optimized | |
| ## What's New | |
| View the [git log](../../compare/$(git describe --tags --abbrev=0 HEAD^)...v${{ needs.check-version.outputs.version }}) for changes in this release. | |
| draft: false | |
| prerelease: false | |
| log-version: | |
| needs: check-version | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Log extracted version | |
| run: | | |
| echo "✅ Workflow completed successfully" | |
| echo "Version: ${{ needs.check-version.outputs.version }}" | |
| echo "New Tag Created: ${{ needs.check-version.outputs.new-tag }}" |