Build Elixir 1.17 for Ubuntu 22.04 #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: Build Elixir 1.17 for Ubuntu 22.04 | |
on: | |
workflow_dispatch: | |
inputs: | |
elixir_tag: | |
description: 'Elixir tag (e.g. v1.15.7)' | |
required: true | |
type: string | |
default: 'v1.15.7' | |
repository_dispatch: | |
types: [new_elixir_1_17_release] | |
jobs: | |
call-reusable-workflow: | |
uses: rabbitmq/erlang-packages/.github/workflows/gen-deb-elixir-reusable-workflow.yml@main | |
with: | |
elixir_tag: ${{ inputs.elixir_tag != '' && inputs.elixir_tag || github.event.client_payload.tag }} | |
distribution_name: 'ubuntu' | |
distribution_codename: 'jammy' | |
distribution_version: '22.04' | |
secrets: inherit |