From 01898f6397433ec537638ab5c6ee35e1ebd11470 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Wed, 28 Feb 2024 14:39:54 -0800 Subject: [PATCH] Fix event and payload passed to neon-os release action --- .github/workflows/publish_test_build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_test_build.yml b/.github/workflows/publish_test_build.yml index e936a3e..7f7e488 100644 --- a/.github/workflows/publish_test_build.yml +++ b/.github/workflows/publish_test_build.yml @@ -24,5 +24,8 @@ jobs: with: token: ${{secrets.NEON_OS_TOKEN}} repository: neongeckocom/neon-os - event-type: release - client-payload: '{"ref": "dev", "repo": "neon-debos"}' \ No newline at end of file + event-type: Publish Release + client-payload: |- + { + "ref": "${{ inputs.branch }}", + "repo": "${{ inputs.repo }}" \ No newline at end of file