This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
Deploy of 24.6.0 manually #16
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: Deploy manually | |
run-name: Deploy of ${{ inputs.tag }} manually | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to deploy' | |
required: true | |
type: string | |
jobs: | |
deploy: | |
uses: ./.github/workflows/deploy_tag.yml | |
with: | |
tag: ${{ inputs.tag }} | |
secrets: | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }} | |
PASSPHRASE: ${{ secrets.PASSPHRASE }} | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} |