Skip to content

Commit

Permalink
fix dependency logic in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rlnt committed Mar 3, 2024
1 parent 720b068 commit ddc29a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit ddc29a2

Please sign in to comment.