Make workflows more consistent

This commit is contained in:
UnknownShadow200 2024-04-28 09:40:27 +10:00
parent e013bb9f15
commit c219b15e84
7 changed files with 30 additions and 7 deletions

View File

@ -32,3 +32,10 @@ jobs:
with:
SOURCE_FILE: 'ios/build/Release-iphoneos/cc.ipa'
DEST_NAME: 'cc.ipa'
- uses: ./.github/actions/notify_success
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
DESTINATION_URL: '${{ secrets.NOTIFY_URL }}'
WORKFLOW_NAME: 'ios'

View File

@ -45,7 +45,7 @@ jobs:
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'src/cc-nix32-gl1'
DEST_NAME: 'ClassiCube-Linux32'
DEST_NAME: 'ClassiCube-Linux32-OpenGL'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
@ -94,7 +94,7 @@ jobs:
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'src/cc-nix64-gl1'
DEST_NAME: 'ClassiCube-Linux64'
DEST_NAME: 'ClassiCube-Linux64-OpenGL'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}

View File

@ -16,6 +16,7 @@ jobs:
- name: Compile N64 build
id: compile
run: |
apt-get update
apt-get -y install curl
REAL_DIR=`pwd`
cd /tmp

View File

@ -16,6 +16,7 @@ jobs:
- name: Compile PS3 build
id: compile
run: |
apt-get update
apt-get install -y curl
export PS3DEV=/usr/local/ps3dev
export PSL1GHT=/usr/local/ps3dev

View File

@ -43,3 +43,10 @@ jobs:
with:
SOURCE_FILE: 'ClassiCube-wiiu.elf'
DEST_NAME: 'ClassiCube-wiiu.elf'
- uses: ./.github/actions/notify_success
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
DESTINATION_URL: '${{ secrets.NOTIFY_URL }}'
WORKFLOW_NAME: 'wiiu'

View File

@ -45,7 +45,7 @@ jobs:
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'src/cc-w32-d3d9.exe'
DEST_NAME: 'ClassiCube-Win32.exe'
DEST_NAME: 'ClassiCube-Win32-Direct3D9.exe'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
@ -109,7 +109,7 @@ jobs:
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'src/cc-w64-d3d9.exe'
DEST_NAME: 'ClassiCube-Win64.exe'
DEST_NAME: 'ClassiCube-Win64-Direct3D9.exe'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}

View File

@ -47,3 +47,10 @@ jobs:
with:
SOURCE_FILE: 'ClassiCube-xbox360.elf32'
DEST_NAME: 'ClassiCube-xbox360.elf32'
- uses: ./.github/actions/notify_success
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
DESTINATION_URL: '${{ secrets.NOTIFY_URL }}'
WORKFLOW_NAME: 'xbox360'