Skip to content

Commit

Permalink
Increment version, update CI settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
PMeira committed Oct 30, 2024
1 parent 78d8137 commit fdbc5fd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion +DSS_MATLAB/version.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
function result = version
result = '0.14.3';
result = '0.14.3-1';
end
20 changes: 15 additions & 5 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
DSS_CAPI_VERSION: '0.14.3'
DSS_MATLAB_VERSION: '0.14.3'
DSS_MATLAB_VERSION: '0.14.3-1'

jobs:
linux_x64:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
path: '${{ github.workspace }}/dss_matlab/release'
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
path: '${{ github.workspace }}/dss_matlab/release'
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
path: '${{ github.workspace }}/dss_matlab/release'
Expand Down Expand Up @@ -166,8 +166,18 @@ jobs:
ls -l
cd ..
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: 'packages'
path: '${{ github.workspace }}/dss_matlab/release'


merge:
runs-on: ubuntu-latest
needs: [linux_x64, win_x64, darwin_x64, darwin_arm64]
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: 'packages'
pattern: 'dss_matlab_v*'

0 comments on commit fdbc5fd

Please sign in to comment.