From 3b9200c589ad004db34d98fdf74cbce2430066a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0ach?= Date: Tue, 12 Nov 2024 11:13:18 +0100 Subject: [PATCH] Add release manifest workflow --- .../workflows/get_release_flatpak_manifest.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/get_release_flatpak_manifest.yml diff --git a/.github/workflows/get_release_flatpak_manifest.yml b/.github/workflows/get_release_flatpak_manifest.yml new file mode 100644 index 0000000000..67645c1d99 --- /dev/null +++ b/.github/workflows/get_release_flatpak_manifest.yml @@ -0,0 +1,17 @@ +name: Create flatpak single file bundle + +on: + workflow_dispatch: + inputs: + tag: + description: 'Tag (e.g. version_1.2.3-rc1)' + required: true + type: string + +jobs: + bundle_flatpak: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/get_release_flatpak_manifest.yml@ms_release_flatpak_manifest + secrets: inherit + with: + actions_branch: ms_release_flatpak_manifest + tag: ${{ inputs.tag }}