Skip to content

Commit

Permalink
0.3. Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
robsonsmartins committed Feb 1, 2024
1 parent 6b659e7 commit b19ba6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
# Upload the Binary
# ------------------------------------------------------------------------
- name: Upload the Firmware Binary (uf2)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: "${{env.FIRMWARE_PROJECT_DIR}}/build/ufprog-*.uf2"
name: "ufprog-uf2-firmware"
14 changes: 7 additions & 7 deletions .github/workflows/software.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- if: matrix.os == 'windows-latest' && matrix.arch == 'x86_64'
name: Cache Qt (Windows 64-bits)
id: cache-qt-win64
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ../QtCacheWin64
key: ${{ runner.os }}-QtCacheWin64
Expand All @@ -97,7 +97,7 @@ jobs:
- if: matrix.os == 'windows-latest' && matrix.arch == 'x86'
name: Cache Qt (Windows 32-bits)
id: cache-qt-win32
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ../QtCacheWin32
key: ${{ runner.os }}-QtCacheWin32
Expand Down Expand Up @@ -251,28 +251,28 @@ jobs:
# ------------------------------------------------------------------------
- if: matrix.os == 'windows-latest' && matrix.arch == 'x86_64'
name: Upload the Installer (Windows 64-bits)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: "${{env.SOFTWARE_PROJECT_DIR}}/build/ufprog-*setup.exe"
name: "ufprog-win64-installer"

- if: matrix.os == 'windows-latest' && matrix.arch == 'x86'
name: Upload the Installer (Windows 32-bits)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: "${{env.SOFTWARE_PROJECT_DIR}}/build/ufprog-*setup.exe"
name: "ufprog-win32-installer"

- if: matrix.os == 'ubuntu-latest' && matrix.arch == 'x86_64'
name: Upload the Packages (Linux 64-bits)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: "${{env.SOFTWARE_PROJECT_DIR}}/build/ufprog-*-*.*"
name: "ufprog-linux64-packages"

- if: matrix.os == 'macos-latest' && matrix.arch == 'x86_64'
name: Upload the Installer (MacOS)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: "${{env.SOFTWARE_PROJECT_DIR}}/build/ufprog-*.dmg"
name: "ufprog-macos-installer"
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
# Upload the Installer
# ------------------------------------------------------------------------
- name: Upload the Package (FreeBSD)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: "${{env.SOFTWARE_PROJECT_DIR}}/build/ufprog-*-*.*"
name: "ufprog-freebsd_amd64-package"

0 comments on commit b19ba6c

Please sign in to comment.