Update building.yml

This commit is contained in:
Lillian Skinner 2024-09-01 01:57:36 -04:00 committed by GitHub
parent 3853fb21aa
commit 45cee202ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,16 +19,29 @@ jobs:
name: Build with Docker using devkitARM name: Build with Docker using devkitARM
steps: steps:
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v4 uses: actions/checkout@v3
- name: Install tools
run: |
sudo apt-get update
sudo apt-get install p7zip-full -y
- name: Setup environment - name: Setup environment
run: git config --global safe.directory '*' run: git config --global safe.directory '*'
- name: Build GodMode9i - name: Build & Package GodMode9i
run: make id: build
- name: Publish build to GH Actions run: |
make dsi
chmod +x make_cia
./make_cia --srl="GodMode9i.dsi" --id_0=$(git rev-parse --short=7 HEAD) --tikID=$(git rev-parse --short=16 HEAD)
- name: Publish unsigned build to GH Actions
uses: actions/upload-artifact@v4.3.6 uses: actions/upload-artifact@v4.3.6
with: with:
path: "GodMode9i.dsi" path: "GodMode9i.dsi"
name: GodMode9i-Nightly-Unsigned name: GodMode9i-Nightly-Unsigned
- name: Publish CTR build to GH Actions
uses: actions/upload-artifact@v4.3.6
with:
path: "GodMode9i.cia"
name: GodMode9i-Nightly-3DS
devsign: devsign:
runs-on: windows-latest runs-on: windows-latest