Skip to content

Commit

Permalink
Add Github actions for build and publish to Open-VSIX and Visual Stud…
Browse files Browse the repository at this point in the history
…io Code Marketplace (eclipse-cdt-cloud#130)

* Add github actions for
- build
- publish (Open-VSIX and VS Code Marketplace)

Signed-off-by: Jens Reinecke <[email protected]>

* add clean script

Signed-off-by: Jens Reinecke <[email protected]>

* bump vsce version

Signed-off-by: Jens Reinecke <[email protected]>

* Update .vscodeignore list

Signed-off-by: Jens Reinecke <[email protected]>

* fix line endings

---------

Signed-off-by: Jens Reinecke <[email protected]>
  • Loading branch information
jreineckearm authored Jan 14, 2025
1 parent 4b03abe commit 604ead5
Show file tree
Hide file tree
Showing 4 changed files with 718 additions and 57 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: ci

on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Build
run: |
yarn install --ignore-scripts
yarn build
yarn vsce:package
- uses: actions/upload-artifact@v3
with:
name: vsix-package
path: ./*.vsix
retention-days: 1

release:
needs: build
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
path: artifacts
- uses: softprops/action-gh-release@v1
with:
files: artifacts/*/*.vsix

publish-open-vsx-registry:
needs: build
name: Open VSX
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
path: artifacts
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Publish
run: |
npx ovsx publish -i artifacts/*/*.vsix -p ${{secrets.OPEN_VSX_TOKEN}}
publish-vscode-marketplace:
needs: build
name: VS Code Marketplace
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
path: artifacts
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Publish
run: |
npx vsce publish -i artifacts/*/*.vsix -p ${{secrets.VS_MARKETPLACE_TOKEN}}
4 changes: 4 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ src
tsconfig.json
webpack.config.js
*.code-workspace
.github
.eslintignore
.prettierignore
esbuild.js
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,7 @@
"build:esbuild": "node esbuild.js",
"watch:esbuild": "node esbuild.js --watch",
"build": "run-p build:*",
"clean": "git clean -f -x ./node_modules ./dist",
"watch": "run-p watch:*",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
Expand All @@ -750,7 +751,7 @@
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vscode/vsce": "^2.18.0",
"@vscode/vsce": "^3.2.1",
"chai": "^4.3.7",
"esbuild": "^0.19.2",
"esbuild-sass-plugin": "^2.13.0",
Expand Down
Loading

0 comments on commit 604ead5

Please sign in to comment.