From ddc29a2f01de002c85bbd8533e5730f10eb18290 Mon Sep 17 00:00:00 2001 From: rlnt Date: Sun, 3 Mar 2024 18:07:05 +0100 Subject: [PATCH] fix dependency logic in release workflow --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42a6bcf3..ae645ce0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,9 @@ jobs: mod_name: "AlmostUnified" # name used for the output JAR files (use a dash instead of spaces) curseforge_id: "633823" # ID of the project on CurseForge modrinth_id: "sdaSaQEz" # ID of the project on Modrinth - dependencies: "['jei(optional){curseforge:238222}{modrinth:u6dRKJwZ}', 'rei(optional){curseforge:310111}{modrinth:nfn13YXA}']" # can be removed if there are no dependencies + dependencies: | # can be removed if there are no dependencies + jei(optional){curseforge:238222}{modrinth:u6dRKJwZ} + rei(optional){curseforge:310111}{modrinth:nfn13YXA} target_version: ${{ github.event.inputs.target_version }} update_type: ${{ github.event.inputs.update_type }} release_type: ${{ github.event.inputs.release_type }}