Skip to content

Commit

Permalink
Update mod-release-pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmeyer authored Sep 28, 2024
1 parent 640d72c commit 4064618
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/mod-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
default: "jak4"
type: "string"
outputDir:
description: "The directory that the releases assets are created and temporarily stored in. Defaults to `/bundler`"
description: "The directory that the releases assets are created and temporarily stored in. Defaults to `./bundler`"
required: false
default: "/bundler"
default: "./bundler"
type: "string"
semverBump:
description: "What semver bump to use - patch|minor|major. Defaults to patch"
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
./.github/scripts/releases/extract_build_unix.sh ./ci-artifacts/linux ./ci-artifacts/opengoal-linux-static ./
pushd ci-artifacts/linux
TAG_VAL=${{ needs.create_release.outputs.bundleTagName }}
tar czf ${{ inputs.outputDir }}/dist/linux-${TAG_VAL}.tar.gz .
tar czf ../../${{ inputs.outputDir }}/dist/linux-${TAG_VAL}.tar.gz .
popd
- name: Upload Bundle
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
./.github/scripts/releases/extract_build_unix.sh ./ci-artifacts/macos-intel ./ci-artifacts/opengoal-macos-static ./
pushd ci-artifacts/macos-intel
TAG_VAL=${{ needs.create_release.outputs.bundleTagName }}
tar czf ${{ inputs.outputDir }}/dist/macos-intel-${TAG_VAL}.tar.gz .
tar czf ../../${{ inputs.outputDir }}/dist/macos-intel-${TAG_VAL}.tar.gz .
popd
- name: Upload Bundle
Expand Down

0 comments on commit 4064618

Please sign in to comment.