From 26e7510621632d0fe0021feb564209cc16befad2 Mon Sep 17 00:00:00 2001 From: Michael Fyffe <6224270+TraGicCode@users.noreply.github.com> Date: Mon, 10 Feb 2025 04:34:49 -0600 Subject: [PATCH] (GH-139) Fix github actions release module --- .github/workflows/release.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5547cd..7ae2273 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,10 +1,7 @@ -# This is a generic workflow for releasing a Puppet module. -# It requires that the caller sets `secrets: inherit` to ensure -# that secrets are visible from steps in this workflow. name: "Module Release" on: - workflow_dispatch: + workflow_call: jobs: release: @@ -15,7 +12,7 @@ jobs: steps: - name: "Set up Ruby" - uses: "actions/setup-ruby@v1" + uses: "ruby/setup-ruby@v1" with: ruby-version: "3.1"