OE-1156 Fix failing unit tests #138
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: Internal Release | |
on: | |
push: | |
tags-ignore: | |
- "*" | |
paths-ignore: | |
- "Skyflow/build.gradle" | |
- "*.md" | |
branches: | |
- release/* | |
jobs: | |
publish: | |
name: Internal Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.PAT_ACTIONS }} | |
fetch-depth: 0 | |
- name: Set up JDK 12 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 12 | |
- name: Get Previous tag | |
id: previoustag | |
run: | | |
git fetch --tags | |
tag=$(git describe --tags --abbrev=0 origin/main) | |
echo "::set-output name=tag::$tag" | |
echo "latest stable tag is $tag" | |
- name: Cache Gradle and wrapper | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
- name: Bump Version | |
run: | | |
chmod +x ./scripts/bump_version.sh | |
./scripts/bump_version.sh "${{ steps.previoustag.outputs.tag }}" "$(git rev-parse --short "$GITHUB_SHA")" | |
- 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] Private Release ${{ steps.previoustag.outputs.tag }}-dev.$(git rev-parse --short $GITHUB_SHA)" | |
git push origin | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b | |
- name: Publish package | |
run: | | |
chmod +x gradlew | |
./gradlew publish -Pdev=true | |
env: | |
USERNAME: ${{ github.actor }} | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} |