Skip to content

Commit

Permalink
chore: bump version of manifest and CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Dec 12, 2024
1 parent 87d4933 commit ff708fa
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,44 @@
name: Continuous Integration

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
os: [windows, macos]
build-type: [Release, Debug]

name: ${{matrix.os}}/${{matrix.build-type}}
runs-on: ${{matrix.os}}-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Make build directory
run: cmake -E make_directory build

- name: Configure
working-directory: build
run: |
cmake ../Sources \
-DCMAKE_BUILD_TYPE=${{matrix.build-type}}
shell: bash

- name: Compile
working-directory: build
run: cmake --build . --config ${{matrix.build-type}}

- name: Upload binary (Mac)
if: matrix.os == 'macos'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: cpu-${{matrix.build-type}}
path: build/cpu

- name: Upload binary (Windows)
if: matrix.os == 'windows'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: cpu-${{matrix.build-type}}.exe
path: build/${{matrix.build-type}}/cpu.exe
strategy:
matrix:
os: [windows, macos]
build-type: [Release, Debug]
2 changes: 1 addition & 1 deletion Sources/com.elgato.cpu.sdPlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"Name": "CPU",
"Icon": "pluginIcon",
"URL": "https://www.elgato.com/gaming/stream-deck",
"Version": "1.4",
"Version": "1.4.1.0",
"OS": [
{
"Platform": "mac",
Expand Down

0 comments on commit ff708fa

Please sign in to comment.