Skip to content

Commit f42daec

Browse files
committed
Merge pull request #29: update to latest PS2BBL
2 parents 2fb88c5 + 47636a5 commit f42daec

File tree

5 files changed

+41
-16
lines changed

5 files changed

+41
-16
lines changed

.github/workflows/compilation.yml

+39-14
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ jobs:
4444
4545
- name: Get short SHA
4646
id: slug
47-
run: |
47+
run: |
4848
echo "SHA8=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_ENV
4949
5050
- name: build changelogs and move extra files
51-
run: |
51+
run: |
5252
make changelog
5353
cp LICENSE bin/LICENSE.TXT
5454
5555
- name: Get branch
5656
if: github.ref != 'refs/heads/main'
5757
id: brnch
58-
run: |
58+
run: |
5959
echo "BRANCH=$(echo -${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
6060
6161
- name: Upload artifacts
@@ -71,23 +71,48 @@ jobs:
7171
echo if you report an issue to the developer. there is a high chance that he might ask you this code>>bin/INSTALL/CORE/HASH.TXT
7272
mv bin/ ${{ github.event.repository.name }}/
7373
7z a -t7z ${{ github.event.repository.name }}${{ env.BRANCH }}.7z ${{ github.event.repository.name }}/
74-
75-
- name: Create pre-release
74+
75+
- name: Release
7676
if: github.ref == 'refs/heads/main'
77-
uses: marvinpinto/action-automatic-releases@latest
77+
uses: softprops/action-gh-release@v2
7878
with:
79-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
8079
prerelease: true
81-
automatic_release_tag: "latest"
82-
title: "Latest Development build"
80+
generate_release_notes: true
81+
tag_name: "latest"
82+
name: "Latest Development build"
8383
files: |
84-
${{ github.event.repository.name }}${{ env.BRANCH }}.7z
84+
${{ github.event.repository.name }}${{ env.BRANCH }}.7z
85+
body: |
86+
![dl](https://img.shields.io/github/downloads/israpps/${{ github.event.repository.name }}/latest/total?style=for-the-badge&logo=github)
8587
8688
- name: Release
8789
if: startsWith(github.ref, 'refs/tags/v')
88-
uses: marvinpinto/action-automatic-releases@latest
90+
uses: softprops/action-gh-release@v2
8991
with:
90-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
91-
prerelease: false
92+
make_latest: true
93+
generate_release_notes: true
94+
tag_name: "${{ env.BRANCH }}"
95+
name: "${{ env.BRANCH }}"
9296
files: |
93-
${{ github.event.repository.name }}${{ env.BRANCH }}.7z
97+
${{ github.event.repository.name }}${{ env.BRANCH }}.7z
98+
body: |
99+
![dl](https://img.shields.io/github/downloads/israpps/${{ github.event.repository.name }}/latest/total?style=for-the-badge&logo=github)
100+
101+
- name: notify on discord
102+
if: github.ref == 'refs/heads/main'
103+
uses: tsickert/[email protected]
104+
with:
105+
webhook-url: ${{ secrets.DISCORD_FEED }}
106+
content: |
107+
## KELFBinder has been updated!
108+
### [Download Page](https://github.com/israpps/${{ github.event.repository.name }}/releases/tag/latest)
109+
110+
- name: notify on discord
111+
if: startsWith(github.ref, 'refs/tags/v')
112+
uses: tsickert/[email protected]
113+
with:
114+
webhook-url: ${{ secrets.DISCORD_FEED }}
115+
content: |
116+
# A new stable version of KELFBinder has been released!
117+
## [Download Page](https://github.com/israpps/${{ github.event.repository.name }}/releases/latest/)
118+

bin/INSTALL/EXTINST.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function Update_InstTable(SOURCEDIR, DESTNTDIR, SOURCE_TABLE, DEST_TABLE, MKDIR_
6969
return COUNT
7070
end
7171

72-
Update_InstTable("INSTALL/ASSETS/PS2BBL", "PS2BBL", MC_INST_TABLE.source, MC_INST_TABLE.target, MC_INST_TABLE.dirs)
72+
Update_InstTable("INSTALL/ASSETS/SYS-CONF", "SYS-CONF", MC_INST_TABLE.source, MC_INST_TABLE.target, MC_INST_TABLE.dirs)
7373
Update_InstTable("INSTALL/ASSETS/APPS" , "APPS" , MC_INST_TABLE.source, MC_INST_TABLE.target, MC_INST_TABLE.dirs)
7474
Update_InstTable("INSTALL/ASSETS/BOOT" , "BOOT" , MC_INST_TABLE.source, MC_INST_TABLE.target, MC_INST_TABLE.dirs)
7575

@@ -94,4 +94,4 @@ end
9494
System.log("DVDPlayer installation table:\n")
9595
for x = 1, #DVDPL_INST_TABLE.source do
9696
System.log(string.format("\t[%s] > [%s]\n", DVDPL_INST_TABLE.source[x], DVDPL_INST_TABLE.target[x]))
97-
end
97+
end

bin/INSTALL/KELF/HSYSTEM.XLF

12.8 KB
Binary file not shown.

bin/INSTALL/KELF/SYSTEM.XLF

12.6 KB
Binary file not shown.

bin/INSTALL/KELF/XSYSTEM.XLF

12.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)