Skip to content

Commit

Permalink
Merge pull request #5 from Alokit-Innovations/akg/cicd
Browse files Browse the repository at this point in the history
Implement continuous integration
  • Loading branch information
avikalpg authored Apr 3, 2024
2 parents 34a700a + 5d75361 commit 01b8366
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Publish Extension

on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- run: npx vsce publish -p ${{ secrets.VSCE_PAT }}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

- Nothing yet

## [0.0.3] - 2024-04-03

### Changed

- Categories now includes "Education" because this extension educates developers to also think about marketing and user research.

### Added

- Added `.github/workflows/publish.yml` file to automatically publish the extension to the VSCode marketplace when a pull request is merged into the `main` branch.

## [0.0.2] - 2024-04-03

### Added
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "HustlerIDE",
"icon": "images/HustlerIDE128x128.png",
"description": "Extension for side hustlers and indie hackers to remind them to talk to their users",
"version": "0.0.2",
"version": "0.0.3",
"publisher": "Vibinex",
"repository": {
"type": "git",
Expand All @@ -13,6 +13,7 @@
"vscode": "^1.87.0"
},
"categories": [
"Education",
"Other"
],
"activationEvents": [],
Expand Down

0 comments on commit 01b8366

Please sign in to comment.