Skip to content

Commit

Permalink
Update GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryOderNichts committed Jun 10, 2024
1 parent 7dcd614 commit 24a67d7
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ on: [push, pull_request]

jobs:
build-binary:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
- name: build binary
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Bloopair_nightly
path: dist/*
23 changes: 23 additions & 0 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release Build

on:
push:
tags:
- '*'
workflow_dispatch:

jobs:
build-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: build binary
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make dist DEBUG=0
- uses: actions/upload-artifact@v4
with:
name: Bloopair_release
path: dist/*
14 changes: 13 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
FROM devkitpro/devkitppc:latest
FROM devkitpro/devkitppc:20240609

# Build latest wut
RUN \
mkdir wut && \
cd wut && \
git init . && \
git remote add origin https://github.com/devkitPro/wut.git && \
git fetch --depth 1 origin f17054e3e86222c14a1094639558d34b690636ed && \
git checkout FETCH_HEAD
WORKDIR /wut
RUN make -j$(nproc)
RUN make install

WORKDIR /project
4 changes: 2 additions & 2 deletions dist/wiiu/apps/Bloopair_pair_menu/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>Bloopair Pairing Menu</name>
<coder>GaryOderNichts</coder>
<version>v0.6.2</version>
<release_date>20230206120000</release_date>
<version>v1.0.0</version>
<release_date>20240610120000</release_date>
<short_description>DS3 Pairing Menu for Bloopair</short_description>
<long_description>
Pairs DualShock 3 controllers using USB to the console.
Expand Down

0 comments on commit 24a67d7

Please sign in to comment.