From b858db8f8da2ac099806f2091b69c116fe2a731c Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Thu, 3 Oct 2024 11:33:41 -0400 Subject: [PATCH] feat(release): add `artifacts` input for attaching artifacts to a release --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be7783d..abbb57a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,6 +2,11 @@ name: Release on: workflow_call: + inputs: + artifacts: + description: "Release artifacts" + required: false + type: string jobs: tag: @@ -94,3 +99,4 @@ jobs: name: ${{needs.tag.outputs.tag}} tag_name: refs/tags/${{needs.tag.outputs.tag}} generate_release_notes: true + files: ${{ inputs.artifacts }}