Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add build workflow #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build extension

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: nuget/setup-nuget@v2
- uses: microsoft/setup-msbuild@v2
- name: Sync NuGet packages
run: nuget restore 'Catppuccin VS Themes'
- name: Build
run: msbuild /p:configuration=Release /p:DeployExtension=false /p:ZipPackageCompressionLevel=normal 'Catppuccin VS Themes'
- uses: actions/upload-artifact@v4
with:
name: Catppuccin for Visual Studio.vsix
path: Catppuccin VS Themes\bin\Release\Catppuccin for Visual Studio.vsix
2 changes: 1 addition & 1 deletion Catppuccin VS Themes/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Catppuccin_for_Visual_Studio.cf093970-131b-4883-8405-0577339048c3" Version="1.6.1" Language="en-US" Publisher="Catppuccin" />
<Identity Id="Catppuccin_for_Visual_Studio.cf093970-131b-4883-8405-0577339048c3" Version="1.6.2" Language="en-US" Publisher="Catppuccin" />
<DisplayName>Catppuccin for Visual Studio</DisplayName>
<Description xml:space="preserve">Catppuccin Themes for Visual Studio</Description>
<MoreInfo>https://github.com/djflan/Catppuccin-Visual-Studio-Themes</MoreInfo>
Expand Down