downgrade #2
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: Release CI | |
on: | |
workflow_call: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- "*" | |
paths: | |
- gradle/libs.dependencies.toml | |
jobs: | |
release: | |
permissions: | |
contents: write | |
name: Release CLI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
git fetch --all | |
git reset --hard origin/main | |
- name: Set variables | |
id: setvars | |
run: | | |
version=$(sed -n 's,palantir-version = "\(.*\)",\1,p' gradle/libs.dependencies.toml) | |
echo "palantir_version=$version" >> $GITHUB_OUTPUT | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 21 | |
cache: gradle | |
- run: | | |
./gradlew build -S --warning-mode all --no-daemon "-PprojVersion=${PALANTIR_VERSION}" | |
env: | |
PALANTIR_VERSION: ${{ steps.setvars.outputs.palantir_version }} | |
- run: | | |
java -jar "build/libs/palantir-cli-$PALANTIR_VERSION-standalone.jar" | |
env: | |
PALANTIR_VERSION: ${{ steps.setvars.outputs.palantir_version }} | |
- name: Release palantir cli ${{steps.setvars.outputs.palantir_version}}" | |
run: | | |
gh release create \ | |
"$PALANTIR_VERSION" \ | |
-t "Palantir CLI $PALANTIR_VERSION" \ | |
--generate-notes \ | |
"build/libs/palantir-cli-${PALANTIR_VERSION}-standalone.jar" | |
env: | |
PALANTIR_VERSION: ${{ steps.setvars.outputs.palantir_version }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |