[minor] #180
Workflow file for this run
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
on: | |
push: | |
tags: | |
- 'v*' | |
name: tag-and-release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: build-and-testing | |
env: | |
JRELEASER_SDKMAN_CONSUMER_KEY: ${{ secrets.SDKMAN_CONSUMER_KEY }} | |
JRELEASER_SDKMAN_CONSUMER_TOKEN: ${{ secrets.SDKMAN_CONSUMER_TOKEN }} | |
JRELEASER_TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }} | |
JRELEASER_TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }} | |
JRELEASER_TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | |
JRELEASER_TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.BREW_GITHUB_TOKEN }} | |
JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }} | |
JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }} | |
JRELEASER_NEXUS2_USERNAME: ${{ secrets.OSSRH_USERNAME}} | |
JRELEASER_NEXUS2_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
JRELEASER_VERSION: 1.5.1 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: install-java11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: temurin | |
cache: gradle | |
- name: build-gradle | |
run: ./gradlew --no-daemon clean build installDist publish --build-cache --scan -s | |
- name: integration-test | |
run: | | |
export PATH=`pwd`/build/install/jbang/bin:$PATH | |
pastdir=`pwd` | |
cd itests | |
./test_suite.sh | |
./itests.sh | |
cd $pastdir | |
- name: version extract | |
id: version | |
run: | | |
RELEASE_VERSION=`cat build/tmp/version.txt` | |
echo "::set-output name=RELEASE_VERSION::$RELEASE_VERSION" | |
- name: Run JReleaser | |
uses: jreleaser/release-action@v2 | |
env: | |
JRELEASER_PROJECT_VERSION: ${{steps.version.outputs.RELEASE_VERSION}} | |
with: | |
version: ${{ env.JRELEASER_VERSION }} | |
arguments: release | |
setup-java: false | |
- name: JReleaser output | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: jreleaser-release | |
path: | | |
out/jreleaser/trace.log | |
out/jreleaser/output.properties |