Release #101
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Release version' | |
required: true | |
build-tasks: | |
description: 'Build tasks' | |
default: 'build aggregateTestReports aggregateJacocoReport publish' | |
required: false | |
type: string | |
permissions: | |
actions: write | |
id-token: write | |
contents: write | |
jobs: | |
precheck: | |
name: Precheck | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.vars.outputs.VERSION }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Version | |
id: vars | |
shell: bash | |
run: | | |
echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT | |
echo ${{ github.event.inputs.version }} > VERSION | |
git add VERSION | |
sed -i -e "s/^\:project-version\:\ .*/:project-version: ${{ github.event.inputs.version }}/g" README.adoc | |
git config --global user.email "${{ secrets.COMMIT_EMAIL }}" | |
git config --global user.name "Julien Ruaux" | |
git commit -a -m "Releasing version ${{ github.event.inputs.version }}" | |
git push origin main | |
jlink: | |
name: Jlink | |
needs: [precheck] | |
uses: redis/riot/.github/workflows/step-jlink.yml@main | |
with: | |
project-version: ${{ needs.precheck.outputs.version }} | |
tasks: ${{ github.event.inputs.build-tasks }} | |
secrets: | |
codecov-token: ${{ secrets.CODECOV_TOKEN }} | |
release: | |
name: Release | |
needs: [precheck, jlink] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
fetch-depth: 0 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: artifacts | |
path: plugins/riot/build | |
- name: Download repos | |
uses: actions/download-artifact@v4 | |
with: | |
name: repos | |
path: build/repos/local/release | |
- name: Download jlink | |
uses: actions/download-artifact@v4 | |
with: | |
name: jlink | |
path: out/jreleaser/assemble/riot-standalone/jlink | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ vars.JAVA_VERSION }} | |
distribution: ${{ vars.JAVA_DISTRO }} | |
cache: gradle | |
- name: Deploy | |
env: | |
GRGIT_USER: ${{ secrets.GIT_USER }} | |
GRGIT_PASS: ${{ secrets.GIT_ACCESS_TOKEN }} | |
run: | | |
./gradlew -Prelease=true -PreproducibleBuild=true publish gitPublishPush -S | |
- name: Upload deploy artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
retention-days: 7 | |
name: deploy | |
path: | | |
build/repos/local/release/ | |
- name: Release | |
uses: jreleaser/release-action@v2 | |
with: | |
arguments: full-release | |
env: | |
JRELEASER_DOCKER_DEFAULT_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
JRELEASER_DOCKER_DEFAULT_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
JRELEASER_GITHUB_PASSWORD: ${{ secrets.GIT_ACCESS_TOKEN }} | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }} | |
JRELEASER_GITHUB_USERNAME: ${{ secrets.GIT_USER }} | |
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.SONATYPE_USERNAME }} | |
JRELEASER_NEXUS2_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
JRELEASER_PROJECT_VERSION: ${{ needs.precheck.outputs.version }} | |
JRELEASER_SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
- name: JReleaser release output | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: riot-release | |
path: | | |
out/jreleaser/trace.log | |
out/jreleaser/output.properties |