action update #3
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: Generate Version Update JSON | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| Generate-frameworks-releases: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Get latest tag and calculate new version | |
| id: set_version | |
| run: | | |
| # Fetch all tags | |
| git fetch --tags | |
| # Get the latest semantic version tag | |
| LATEST_TAG=$(git tag --sort=-v:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' | head -n 1) | |
| if [ -z "$LATEST_TAG" ]; then | |
| echo "No existing SemVer tag found, starting with v1.0.0" | |
| NEW_VERSION="v1.0.0" | |
| else | |
| echo "Latest tag found: $LATEST_TAG" | |
| # Remove 'v' prefix for version manipulation | |
| CURRENT_VERSION=${LATEST_TAG:1} | |
| MAJOR=$(echo $CURRENT_VERSION | cut -d. -f1) | |
| MINOR=$(echo $CURRENT_VERSION | cut -d. -f2) | |
| # Append commit count as a build metadata (optional, based on your need for a unique ID) | |
| # You might use the count since the last tag here | |
| COMMIT_COUNT=$(git rev-list HEAD ^$LATEST_TAG --count) | |
| NEW_VERSION="v$MAJOR.$MINOR.$PATCH+$COMMIT_COUNT" | |
| # If you just want a clean SemVer tag without commit count metadata: | |
| # NEW_VERSION="v$MAJOR.$MINOR.$COMMIT_COUNT" | |
| fi | |
| echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 # Use the latest version | |
| with: | |
| python-version: "3.14" # Specify the Python version you need | |
| - name: Build SudoFrameworks | |
| run: python main.py | |
| - name: Create GitHub Release and upload assets | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: release/* # Upload all files in the build directory | |
| tag_name: ${{ steps.set_version.outputs.NEW_VERSION }} | |
| name: Release ${{ steps.set_version.outputs.NEW_VERSION }} | |
| draft: false | |
| prerelease: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the default GITHUB_TOKEN |