Skip to content

fix: add stash type to ref sort order in CommitDetails #1

fix: add stash type to ref sort order in CommitDetails

fix: add stash type to ref sort order in CommitDetails #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Install webview dependencies
run: cd webview-ui && npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test
- name: Package extension
run: npx @vscode/vsce package
- name: Upload .vsix artifact
uses: actions/upload-artifact@v4
with:
name: git-graph-plus-${{ github.ref_name }}
path: '*.vsix'
- name: Publish to VS Code Marketplace
run: npx @vscode/vsce publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: '*.vsix'
generate_release_notes: true