glquake/.github/workflows/build-and-release.yml

67 lines
2.2 KiB
YAML
Raw Normal View History

name: Build and Publish Release
on: [push]
jobs:
Compile-3ds:
runs-on: ubuntu-latest
outputs:
2022-11-01 06:25:34 +00:00
o3ds_link: ${{ steps.zip.outputs.zip }}
container:
2022-11-01 06:05:58 +00:00
image: devkitpro/devkitarm
steps:
- uses: actions/checkout@v2
- name: Install Packages and update picaGL
run: |
2022-11-01 06:19:32 +00:00
git clone https://github.com/masterfeizz/picaGL.git
cd picaGL
2022-11-01 06:17:29 +00:00
git checkout revamp
mkdir clean
2022-11-01 06:17:29 +00:00
make install
- name: Build
working-directory: ./
run: |
make -f Makefile
- name: Zip
working-directory: ./
run: |
zip -r ctr-nzp-3dsx.zip nzportable.3dsx nzportable.smdh
2022-11-01 06:24:51 +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.1
2022-11-01 06:24:51 +00:00
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 .3dsx release, stability is not guarenteed.
2022-11-01 06:24:51 +00:00
To install:
- 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.
2022-11-01 06:24:51 +00:00
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-3dsx.zip
asset_name: ctr-nzp-3dsx.zip
2022-11-01 06:24:51 +00:00
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 }}