diff --git a/.github/workflows/mod-release-pipeline.yml b/.github/workflows/mod-release-pipeline.yml index 8fcfb0f19..a78bce7e2 100644 --- a/.github/workflows/mod-release-pipeline.yml +++ b/.github/workflows/mod-release-pipeline.yml @@ -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" @@ -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 @@ -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