From f85c567b9813cc7576891e0723332f9869849a82 Mon Sep 17 00:00:00 2001 From: Ian Date: Sun, 27 Nov 2022 12:30:24 -0500 Subject: [PATCH] Make release output more legible. Changes a few things like file name and 'tutorial' to make it easier to understand. --- .github/workflows/build-and-release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index dffb438..d73c553 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -24,8 +24,8 @@ jobs: id: zip working-directory: ./ run: | - zip -r ctr-nzp-3ds.zip nzportable.3dsx nzportable.smdh - curl --upload-file ./ctr-nzp-3ds.zip https://transfer.sh/ctr-nzp-3ds.zip > output-log.log + zip -r ctr-nzp-3dsx.zip nzportable.3dsx nzportable.smdh + curl --upload-file ./ctr-nzp-3dsx.zip https://transfer.sh/ctr-nzp-3dsx.zip > output-log.log echo "::set-output name=zip::$(cat output-log.log)" Unify-and-Release: runs-on: ubuntu-latest @@ -35,7 +35,7 @@ jobs: - name: Download Archives working-directory: ./ run: | - curl ${{ needs.Compile-3ds.outputs.o3ds_link }} -o ctr-nzp-3ds.zip + curl ${{ needs.Compile-3ds.outputs.o3ds_link }} -o ctr-nzp-3dsx.zip - name: Generate Build Date id: date run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')" @@ -55,10 +55,10 @@ jobs: tag_name: bleeding-edge release_name: Automated Release ${{ steps.date.outputs.date }} body: | - This is a **bleeding edge** NZ:P 3DS release, stability is not guarenteed. + This is a **bleeding edge** NZ:P .3dsx release, stability is not guarenteed. To install: - - Grab the .ZIP archive for your platform - - 3DS: Extract the `.3dsx`, copy it to /3ds/nzportable on SD Card, copy data assets. + - Grab the .ZIP archive (ctr-nzp-3dsx.zip) + - Extract the contents of the .ZIP archive and copy it to /3ds/nzportable on your SD Card. draft: true prerelease: false - name: Upload 3DS Archive