File tree Expand file tree Collapse file tree
plugins/+ciplugins/+github Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 build :
1010 name : Build
1111 runs-on : ubuntu-latest
12+ outputs :
13+ tag : ${{ steps.update-package-version.outputs.version }}
1214 steps :
1315 - uses : actions/checkout@v5
1416 - name : Configure git
2123
2224 # Update package.json version to match the release tag
2325 - name : Update package version
26+ id : update-package-version
2427 run : |
2528 git tag -d "${{ github.event.release.tag_name }}"
2629 VERSION=$(npm version "${{ github.event.release.tag_name }}" --no-git-tag-version)
3437
3538 # Create release with built artifacts
3639 - name : Create release artifacts
40+ id : release_info
3741 run : |
3842 # Validate semantic versioning
3943 longVersion="${{github.event.release.tag_name}}"
5155 git tag -f -a -m "Release $longVersion" $longVersion
5256
5357 # Push the release tag
58+ echo "Pushing new tag"
5459 git push -f origin $longVersion
Original file line number Diff line number Diff line change 11% rename and restructure all plugins
22classdef BuildSummaryPlugin < matlab .buildtool .plugins .BuildRunnerPlugin
33
4- % Copyright 2024 The MathWorks, Inc.
4+ % Copyright 2024-25 The MathWorks, Inc.
55
66 properties (Access = private )
77 TaskDetails = {};
Original file line number Diff line number Diff line change 11classdef GitHubLogBuildRunnerPlugin < matlab .buildtool .plugins .BuildRunnerPlugin
22
3- % Copyright 2024 The MathWorks, Inc.
3+ % Copyright 2024-25 The MathWorks, Inc.
44
55 methods (Access = protected )
66
You can’t perform that action at this time.
0 commit comments