Merge pull request #178 from skyflowapi/release/25.4.2 #47
Workflow file for this run
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: Public Release | |
| on: | |
| push: | |
| tags: '[0-9]+.[0-9]+.[0-9]+' | |
| jobs: | |
| build-sdk: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| ref: main | |
| token: ${{ secrets.PAT_ACTIONS }} | |
| - name: Get Previous tag | |
| id: previoustag | |
| uses: WyriHaximus/github-action-get-previous-tag@v1 | |
| with: | |
| fallback: 1.0.0 | |
| - name: Bump Version | |
| run: | | |
| chmod +x ./scripts/bump_version.sh | |
| ./scripts/bump_version.sh "${{ steps.previoustag.outputs.tag }}" | |
| - name: Commit changes | |
| run: | | |
| git config user.name ${{ github.actor }} | |
| git config user.email ${{ github.actor }}@users.noreply.gihub.com | |
| git add Skyflow/build.gradle | |
| git commit -m "[AUTOMATED] Public Release ${{ steps.previoustag.outputs.tag }}" | |
| git push origin | |
| - name: Validate Gradle wrapper | |
| uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b | |
| - name: Publish package | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew publish | |
| env: | |
| USERNAME: ${{ github.actor }} | |
| TOKEN: ${{ secrets.GITHUB_TOKEN }} |