workflow #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- 'feat/**' | |
- 'fix/**' | |
- master | |
paths-ignore: | |
- '.vscode/**' | |
jobs: | |
cicd: | |
name: Release package to Github page | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install gitversion tool | |
uses: gittools/actions/gitversion/setup@v2.0.1 | |
with: | |
versionSpec: '5.x' | |
- name: Execute gitversion | |
id: gitversion # step id used as reference for output values | |
uses: gittools/actions/gitversion/execute@v2.0.1 | |
with: | |
useConfigFile: true | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
- name: Clean install dependencies | |
run: npm ci | |
- name: Update metadata in package.json | |
uses: onlyutkarsh/patch-files-action@v1.0.5 | |
with: | |
files: '${{github.workspace}}/package.json' | |
patch-syntax: | | |
= /version => "${{ steps.gitversion.outputs.semVer }}" | |
= /displayName => "CppUTest Test Adapter" | |
= /description => "Run your CppUTest tests in the Sidebar of Visual Studio Code" | |
- name: Add version in CHANGELOG.md | |
uses: cschleiden/replace-tokens@v1.3 | |
with: | |
files: '${{github.workspace}}/CHANGELOG.md' | |
env: | |
VERSION: "${{ steps.gitversion.outputs.semVer }}" | |
- name: Compile and create vsix | |
run: npm run package | |
- name: upload vsix as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cpputest-test-adapter-${{steps.gitversion.outputs.semVer}}.vsix | |
if-no-files-found: error | |
path: ${{github.workspace}}/cpputest-test-adapter-${{steps.gitversion.outputs.semVer}}.vsix | |