2022-09-09 07:06:02 +00:00
|
|
|
name: Build and Publish Release
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
Compile-3ds:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
3ds_link: ${{ steps.zip.outputs.zip }}
|
|
|
|
container:
|
|
|
|
image: libctru/libctru:latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Packages and update picaGL
|
|
|
|
run: |
|
|
|
|
apk add bash build-base zip git curl cmake
|
|
|
|
git clone https://github.com/masterfeizz/picaGL.git
|
|
|
|
cd picaGL
|
|
|
|
mkdir clean
|
|
|
|
make install
|
|
|
|
- name: Build
|
|
|
|
working-directory: ./
|
|
|
|
run: |
|
|
|
|
make -f Makefile
|
|
|
|
- name: Zip and Upload
|
|
|
|
id: zip
|
|
|
|
working-directory: ./
|
|
|
|
run: |
|
|
|
|
zip -r vita-nzp-3ds.zip nzportable.3dsx nzportable.smdh
|
|
|
|
curl --upload-file ./ctr-nzp-3ds.zip https://transfer.sh/ctr-nzp-3ds.zip > output-log.log
|
|
|
|
echo "::set-output name=zip::$(cat output-log.log)"
|
|
|
|
Unify-and-Release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: Compile-3ds
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Download Archives
|
|
|
|
working-directory: ./
|
|
|
|
run: |
|
2022-09-09 07:10:09 +00:00
|
|
|
curl ${{ needs.Compile-3ds.outputs.3ds_link }} -o ctr-nzp-3ds.zip
|
2022-09-09 07:06:02 +00:00
|
|
|
- name: Generate Build Date
|
|
|
|
id: date
|
|
|
|
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
|
|
|
|
- name: Delete Old Release
|
|
|
|
uses: dev-drprasad/delete-tag-and-release@v0.2.0
|
|
|
|
with:
|
|
|
|
delete_release: true
|
|
|
|
tag_name: bleeding-edge
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Create Release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
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.
|
|
|
|
|
|
|
|
To install:
|
|
|
|
- Grab the .ZIP archive for your platform
|
|
|
|
- 3DS: Extract `nzportable.3dsx` and `nzportable.sdmh` to `3ds/nzportable` on your Nintendo 3DS.
|
|
|
|
draft: true
|
|
|
|
prerelease: false
|
|
|
|
- name: Upload 3DS Archive
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./ctr-nzp-3ds.zip
|
|
|
|
asset_name: ctr-nzp-3ds.zip
|
|
|
|
asset_content_type: application/zip
|
|
|
|
- name: Publish Release
|
|
|
|
uses: StuYarrow/publish-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
id: ${{ steps.create_release.outputs.id }}
|
|
|
|
|