Skip to content

Commit

Permalink
Work on CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
emericg committed Apr 16, 2024
1 parent d38984b commit d5c63bf
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/builds_desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
env:
APP_NAME: "OffloadBuddy"
APP_VERSION: "0.12"
QT_VERSION: "6.6.0"
QT_VERSION: "6.6.3"

#-------------------------------------------------------------------------------
# Workflow jobs
Expand Down Expand Up @@ -57,6 +57,7 @@ jobs:
qmake --version
cmake --version
export CMAKE_BUILD_PARALLEL_LEVEL=$(nproc)
sudo rm /home/runner/work/${{env.APP_NAME}}/Qt/${{env.QT_VERSION}}/gcc_64/plugins/sqldrivers/libqsqlmimer.so
# Build dependencies (from contribs script)
- name: Build dependencies (from contribs script)
Expand All @@ -77,14 +78,14 @@ jobs:

# Upload archive
- name: Upload archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.APP_NAME}}-${{env.APP_VERSION}}-linux64.tar.gz
path: ${{env.APP_NAME}}-${{env.APP_VERSION}}-linux64.tar.gz

# Upload AppImage
- name: Upload AppImage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.APP_NAME}}-${{env.APP_VERSION}}-linux64.AppImage
path: ${{env.APP_NAME}}-${{env.APP_VERSION}}-linux64.AppImage
Expand Down Expand Up @@ -143,7 +144,7 @@ jobs:

# Upload app ZIP
- name: Upload app ZIP
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.APP_NAME}}-${{env.APP_VERSION}}-macOS.zip
path: ${{env.APP_NAME}}-${{env.APP_VERSION}}-macOS.zip
Expand Down Expand Up @@ -205,14 +206,14 @@ jobs:

# Upload app ZIP
- name: Upload app ZIP
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.APP_NAME}}-${{env.APP_VERSION}}-win64.zip
path: ${{env.APP_NAME}}-${{env.APP_VERSION}}-win64.zip

# Upload NSIS installer
- name: Upload NSIS installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.APP_NAME}}-${{env.APP_VERSION}}-win64.exe
path: ${{env.APP_NAME}}-${{env.APP_VERSION}}-win64.exe

0 comments on commit d5c63bf

Please sign in to comment.