Create the release artifacts #7
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
# The "release" release is built manually from a given git sha and it puts the artifacts | |
# that are meant to be used currently on a permalink. | |
name: Create the release artifacts | |
on: | |
workflow_dispatch: | |
inputs: | |
release_git_sha: | |
type: string | |
description: The git sha of the commit from where the current release will be built from. | |
required: true | |
jobs: | |
call-publish-base: | |
uses: ./.github/workflows/gradle-publish-base.yml | |
with: | |
release_git_sha: '${{ inputs.release_git_sha }}' | |
release_name: 'release' | |