Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check uploads artifacts #138

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 90 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ jobs:
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

deb:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -76,6 +83,13 @@ jobs:
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

x86:
runs-on: ubuntu-latest
steps:
Expand All @@ -102,7 +116,14 @@ jobs:
mv lgpt-resources-1.0/*/ ./resources/packaging
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh


- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

psp:
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -135,7 +156,14 @@ jobs:
mv lgpt-resources-1.0/*/ ./resources/packaging
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh


- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

bittboy:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -163,6 +191,13 @@ jobs:
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

garlic:
runs-on: ubuntu-latest

Expand Down Expand Up @@ -191,6 +226,13 @@ jobs:
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

garlicplus:
runs-on: ubuntu-latest

Expand Down Expand Up @@ -218,7 +260,14 @@ jobs:
mv lgpt-resources-1.0/*/ ./resources/packaging
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh


- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

rg35xxplus:
runs-on: ubuntu-latest

Expand All @@ -245,7 +294,14 @@ jobs:
unzip lgpt-resources.zip
mv lgpt-resources-1.0/*/ ./resources/packaging
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

miyoo:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -276,6 +332,13 @@ jobs:
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

x64:
runs-on: ubuntu-latest

Expand All @@ -295,6 +358,22 @@ jobs:
run: |
make PLATFORM=X64

- name: Package build
working-directory: projects
run: |
curl -L -o lgpt-resources.zip https://github.com/djdiskmachine/lgpt-resources/archive/refs/tags/1.0.zip
unzip lgpt-resources.zip
mv lgpt-resources-1.0/*/ ./resources/packaging
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error

macos:
runs-on: macos-13
steps:
Expand All @@ -320,3 +399,10 @@ jobs:
mv lgpt-resources-1.0/*/ ./resources/packaging
rm -rf lgpt-resources*
./resources/packaging/lgpt_package.sh

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LGPT-${{ github.job }}-${{ github.sha }}.zip
path: projects/*.zip
if-no-files-found: error
2 changes: 1 addition & 1 deletion sources/Application/Model/Project.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#define PROJECT_NUMBER "1"
#define PROJECT_RELEASE "4"
#define BUILD_COUNT "2"
#define BUILD_COUNT "3-bacon0"


#define MAX_TAP 3
Expand Down
Loading