Skip to content

Commit

Permalink
fixes?
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmeyer committed Sep 27, 2024
1 parent c0f9ffb commit 3f9f408
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/cut-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ permissions:
contents: write

jobs:
cut_release:
name: "Cut Release"
prep_vars:
name: "Prep Variables"
runs-on: ubuntu-latest
outputs:
supported_games: ${{ steps.prep-vars.outputs.GAMES }}
tooling_repo: ${{ steps.prep-vars.outputs.REPO }}
steps:
- name: Prep Variables
id: prep-vars
Expand All @@ -63,12 +67,14 @@ jobs:
if [[ ${{ inputs.binary_source == 'vanilla' }} ]]; then REPO=open-goal/jak-project; fi
echo "REPO=$REPO" >> $GITHUB_OUTPUT
- name: Cut Release
uses: open-goal/mod-bundling-tools/.github/workflows/create-mod-release.yml@v1
with:
semverBump: ${{ inputs.bump }}
metadataSupportedGames: ${{ steps.prep-vars.outputs.GAMES }}
buildBinaries: ${{ inputs.binary_source == 'build_binaries'}}
toolingRepo: ${{ steps.prep-vars.outputs.REPO }}
cut_release:
name: "Cut Release"
needs: prep_vars
uses: open-goal/mod-bundling-tools/.github/workflows/create-mod-release.yml@v1
with:
semverBump: ${{ inputs.bump }}
metadataSupportedGames: ${{ needs.prep_vars.outputs.supported_games }}
buildBinaries: ${{ inputs.binary_source == 'build_binaries'}}
toolingRepo: ${{ needs.prep_vars.outputs.tooling_repo }}
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3f9f408

Please sign in to comment.